Skip to content

Commit

Permalink
Make radio_id into entity so we can make diff between wifi and cbrs
Browse files Browse the repository at this point in the history
  • Loading branch information
macpie committed Oct 14, 2024
1 parent 571c078 commit 4cefc5d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -908,13 +908,16 @@ message radio_location_estimate_v1 {
}

message radio_location_estimates_req_v1 {
string radio_id = 1;
repeated radio_location_estimate_v1 estimates = 2;
oneof entity {
string cbrs_id = 1;
bytes wifi_pub_key = 2;
}
repeated radio_location_estimate_v1 estimates = 3;
// unix epoch timestamp in seconds
uint64 timestamp = 3;
uint64 timestamp = 4;
// pubkey binary of the signing keypair
bytes carrier_key = 4;
bytes signature = 5;
bytes carrier_key = 5;
bytes signature = 6;
}

message radio_location_estimates_resp_v1 { string id = 1; }
Expand Down

0 comments on commit 4cefc5d

Please sign in to comment.