Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f659303e authored by Lucas Lin's avatar Lucas Lin Committed by Automerger Merge Worker
Browse files

Merge "Add comments to describe the value of converting hex to decimal" am:...

Merge "Add comments to describe the value of converting hex to decimal" am: 5b30e438 am: 9307980e am: 172cce09

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

Change-Id: I0f978fd5fa0283a40db2897478483d680d44e9e9
parents f8de58f9 172cce09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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.