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

Commit 467962e9 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

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

Merge "ADD new enum NetworkType to identify multiple transport type" am: b4562568 am: ced462a3 am: 919a4ebd am: a075e569 am: e0cbb39c

Change-Id: I85d7aa69bc4a1f4a6de3f68cec1fcc3b8848e5c5
parents 3a08af7e e0cbb39c
Loading
Loading
Loading
Loading
+10 −2
Original line number Original line Diff line number Diff line
@@ -169,12 +169,20 @@ enum NetworkType {
    NT_BLUETOOTH = 3;
    NT_BLUETOOTH = 3;
    // Indicates this network uses an Ethernet transport.
    // Indicates this network uses an Ethernet transport.
    NT_ETHERNET = 4;
    NT_ETHERNET = 4;
    // Indicates this network uses a VPN transport.
    // Indicates this network uses a VPN transport, now deprecated.
    NT_VPN = 5;
    NT_VPN = 5 [deprecated=true];
    // Indicates this network uses a Wi-Fi Aware transport.
    // Indicates this network uses a Wi-Fi Aware transport.
    NT_WIFI_AWARE = 6;
    NT_WIFI_AWARE = 6;
    // Indicates this network uses a LoWPAN transport.
    // Indicates this network uses a LoWPAN transport.
    NT_LOWPAN = 7;
    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{
enum CacheStatus{