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

Commit 2e0099a9 authored by lucaslin's avatar lucaslin Committed by Lucas Lin
Browse files

Add comments to describe the value of converting hex to decimal

Bug: 172183305
Test: N/A
Change-Id: Id274295d6c8c97d3014214f875168ff968f79bb6
parent fe4b43da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5114,9 +5114,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.