diff options
author | Mingguang Xu <mingguangxu@google.com> | 2019-03-29 21:13:36 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-03-29 21:13:36 +0000 |
commit | 67af9085e4634adef2a9a879654263e3c5d38278 (patch) | |
tree | c67eb7d0d3b73755c2e532783db74a236c1fe52c /proto/src | |
parent | c2e5a1523969df3d2190f170aefa035cd417b92d (diff) | |
parent | cd53d0bddfa0b6d57ebeb2de7494a61b99a88f65 (diff) |
Merge "Wifi usability: Add IP reachability lost into Wifi unusable event"
Diffstat (limited to 'proto/src')
-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 059f76cf5db5..af77df60638a 100644 --- a/proto/src/wifi.proto +++ b/proto/src/wifi.proto @@ -1752,6 +1752,9 @@ message WifiIsUnusableEvent { // Firmware generated an alert TYPE_FIRMWARE_ALERT = 4; + + // IP Manager lost reachability to network neighbors + TYPE_IP_REACHABILITY_LOST = 5; } // What event triggered WifiIsUnusableEvent. @@ -2045,6 +2048,9 @@ message WifiUsabilityStats { // Firmware generated an alert TYPE_FIRMWARE_ALERT = 4; + + // IP Manager lost reachability to network neighbors + TYPE_IP_REACHABILITY_LOST = 5; } // The current wifi usability state |