Merge "Add comments to describe the value of converting hex to decimal" am: 26f778d2bd am: dc6444c414

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1635221

Change-Id: I200d8ccb606e3bf440aaba0a875097b56b79a0c6
This commit is contained in:
Lucas Lin
2021-03-16 09:45:35 +00:00
committed by Automerger Merge Worker

View File

@@ -5105,9 +5105,9 @@ public class ConnectivityManager {
}
// The first network ID of IPSec tunnel interface.
private static final int TUN_INTF_NETID_START = 0xFC00;
private static final int TUN_INTF_NETID_START = 0xFC00; // 0xFC00 = 64512
// The network ID range of IPSec tunnel interface.
private static final int TUN_INTF_NETID_RANGE = 0x0400;
private static final int TUN_INTF_NETID_RANGE = 0x0400; // 0x0400 = 1024
/**
* Get the network ID range reserved for IPSec tunnel interfaces.