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

Commit 8735a07a authored by Wink Saville's avatar Wink Saville
Browse files

No need to have BASE_DATA_CONNECTION_TRACKER start at 50000.

Update comment that values should be changed after releasing.

Change-Id: I10ed6a0238e4f5be866dd97cfb56c5e7c84ddb52
parent 48b6d5af
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -26,6 +26,9 @@ package com.android.internal.util;
 * codes with Message.what starting at Protocol.WIFI + 1 and less than or equal to Protocol.WIFI +
 * Protocol.MAX_MESSAGE
 *
 * NOTE: After a value is created and source released a value shouldn't be changed to
 * maintain backwards compatibility.
 *
 * {@hide}
 */
public class Protocol {
@@ -40,7 +43,7 @@ public class Protocol {
    public static final int BASE_DHCP                                               = 0x00030000;
    public static final int BASE_DATA_CONNECTION                                    = 0x00040000;
    public static final int BASE_DATA_CONNECTION_AC                                 = 0x00041000;
    public static final int BASE_DATA_CONNECTION_TRACKER                            = 0x00050000;
    public static final int BASE_DATA_CONNECTION_TRACKER                            = 0x00042000;

    //TODO: define all used protocols
}