diff options
| author | 2018-08-14 21:41:36 +0000 | |
|---|---|---|
| committer | 2018-08-14 21:41:36 +0000 | |
| commit | 8d9b51f9ad68e946fab77bddfecaa56d09ae40b4 (patch) | |
| tree | 5f3441ce2240831cb04c9c9561aa0c5a59197167 | |
| parent | 9b191c24152823fac542a15f6b50be930a5e36e8 (diff) | |
| parent | b56979f7f53d1eed7dfb47650c7da87a72ba905c (diff) | |
Merge "Add WIFI_ENABLED and WIFI_DISABLED to StaEvent"
| -rw-r--r-- | proto/src/wifi.proto | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/proto/src/wifi.proto b/proto/src/wifi.proto index f7fcf5c6adac..45d8a5561677 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -811,6 +811,12 @@ message StaEvent {      // Framework changed Sta interface MAC address      TYPE_MAC_CHANGE = 17; + +    // Wifi is turned on +    TYPE_WIFI_ENABLED = 18; + +    // Wifi is turned off +    TYPE_WIFI_DISABLED = 19;    }    enum FrameworkDisconnectReason { |