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

Commit 3fea52eb authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "ADD new enum NetworkType to identify multiple transport type in...

Merge "ADD new enum NetworkType to identify multiple transport type in stats.proto" am: d5721395 am: 75a1c20d am: 4ce6fbd5 am: d4aae34a

Change-Id: I29fe11a974cc9975e279cdea0ccc713ecbf9fd6d
parents a64455b6 d4aae34a
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -170,12 +170,20 @@ enum NetworkType {
    NT_BLUETOOTH = 3;
    // Indicates this network uses an Ethernet transport.
    NT_ETHERNET = 4;
    // Indicates this network uses a VPN transport.
    NT_VPN = 5;
    // Indicates this network uses a VPN transport, now deprecated.
    NT_VPN = 5 [deprecated=true];
    // Indicates this network uses a Wi-Fi Aware transport.
    NT_WIFI_AWARE = 6;
    // Indicates this network uses a LoWPAN transport.
    NT_LOWPAN = 7;
    // Indicates this network uses a Cellular+VPN transport.
    NT_CELLULAR_VPN = 8;
    // Indicates this network uses a Wi-Fi+VPN transport.
    NT_WIFI_VPN = 9;
    // Indicates this network uses a Bluetooth+VPN transport.
    NT_BLUETOOTH_VPN = 10;
    // Indicates this network uses an Ethernet+VPN transport.
    NT_ETHERNET_VPN = 11;
}

enum CacheStatus{