diff options
author | Remi NGUYEN VAN <reminv@google.com> | 2019-03-28 00:14:31 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-03-28 00:14:31 +0000 |
commit | 23dd932915780e1d604fa4e4acaf7d478dc8c8ab (patch) | |
tree | df66906ae079916835cd8302b4e87ce044fca279 /src/android/net/dhcp/DhcpClient.java | |
parent | c85b2638bd821e9f807ad468ab45a06e9857277d (diff) | |
parent | 776d7f79a8ab59908b6f2d494fa95bf644e0c001 (diff) |
Merge "Fix message names in dumpsys network_stack"
Diffstat (limited to 'src/android/net/dhcp/DhcpClient.java')
-rw-r--r-- | src/android/net/dhcp/DhcpClient.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/android/net/dhcp/DhcpClient.java b/src/android/net/dhcp/DhcpClient.java index c6dd011..79d6a55 100644 --- a/src/android/net/dhcp/DhcpClient.java +++ b/src/android/net/dhcp/DhcpClient.java @@ -126,6 +126,7 @@ public class DhcpClient extends StateMachine { // DhcpClient uses IpClient's handler. private static final int PUBLIC_BASE = IpClient.DHCPCLIENT_CMD_BASE; + // Below constants are picked up by MessageUtils and exempt from ProGuard optimization. /* Commands from controller to start/stop DHCP */ public static final int CMD_START_DHCP = PUBLIC_BASE + 1; public static final int CMD_STOP_DHCP = PUBLIC_BASE + 2; |