summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2019-10-28 00:48:28 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-10-28 00:48:28 +0000
commit36efc76276cd2a66a61ac36f41c9c75c5b7ad907 (patch)
treee59e8fc80d9a7f2ef2e86d84324349054c3acf2c /service
parent4a742ba4f62cb79f2cfbe6292d54cf53db57eebb (diff)
parentddccfb67796c06194db5429d41735275fe265e81 (diff)
Merge "[WifiScoreCardProto] Remove unused fields."
Diffstat (limited to 'service')
-rw-r--r--service/proto/src/scorecard.proto21
1 files changed, 2 insertions, 19 deletions
diff --git a/service/proto/src/scorecard.proto b/service/proto/src/scorecard.proto
index da9128263..27e1e13cb 100644
--- a/service/proto/src/scorecard.proto
+++ b/service/proto/src/scorecard.proto
@@ -52,9 +52,9 @@ message AccessPoint {
optional int32 id = 1; // Concise id
optional bytes bssid = 2; // BSSID of the access point (not stored)
optional SecurityType security_type = 6; // Wireless security type
- optional Technology technology = 3; // Wireless technology
+ reserved 3;
repeated Signal event_stats = 4; // Statistics taken at specific events
- repeated Roam roams = 5; // Roaming failures and successes
+ reserved 5;
};
// Describes the IEEE 802.11 security type
@@ -68,16 +68,6 @@ enum SecurityType {
OWE = 6; // Opportunistic Wireless Encryption
};
-// Describes the IEEE 802.11 technology used by the access point
-enum Technology {
- MODE_UNKNOWN = 0; // not known
- MODE_11A = 1; // 802.11a
- MODE_11B = 2; // 802.11b
- MODE_11G = 3; // 802.11g
- MODE_11N = 4; // 802.11n
- MODE_11AC = 5; // 802.11ac
-};
-
// Records statistics gathered at various points in the life-cycle of
// a connection, e.g., at disconnections of various flavors. May be
// further split out by frequency.
@@ -106,13 +96,6 @@ message UnivariateStatistic {
optional double historical_variance = 7; // Long-term variance
};
-// Tracks roaming failures and successes
-message Roam {
- optional int32 to_id = 1; // AP that we roamed to
- optional int32 good = 2; // Successful roams
- optional int32 bad = 3; // Failed roams
-};
-
// Events where statistics may be collected
enum Event {
SIGNAL_POLL = 1;