Skip to content

Commit

Permalink
rename enum to just location_source
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalser committed May 15, 2024
1 parent 45a2ec8 commit ecd4a0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ message cell_heartbeat_ingest_report_v1 {
cell_heartbeat_req_v1 report = 2;
}

enum wifi_location_source {
enum location_source {
unknown = 0;
asserted = 1;
gps = 2;
Expand All @@ -89,7 +89,7 @@ message wifi_heartbeat_req_v1 {
bool operation_mode = 6;
bytes coverage_object = 7;
bytes signature = 8;
wifi_location_source location_source = 9;
location_source location_source = 9;
}

message wifi_heartbeat_resp_v1 { string id = 1; }
Expand Down Expand Up @@ -337,7 +337,7 @@ message heartbeat {
// only used for wifi radios, all others should have a value of 1.0
// value is 0.0 to 1.0 multiplied by 1000
uint32 location_trust_score_multiplier = 12;
wifi_location_source location_source = 13;
location_source location_source = 13;
}

enum heartbeat_validity {
Expand Down

0 comments on commit ecd4a0d

Please sign in to comment.