Skip to content

Commit

Permalink
Add submit_radio_location_estimates api
Browse files Browse the repository at this point in the history
  • Loading branch information
macpie committed Sep 13, 2024
1 parent fe2923c commit d7eea3f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,8 @@ service poc_mobile {
rpc submit_subscriber_verified_mapping_event(
subscriber_verified_mapping_event_req_v1)
returns (subscriber_verified_mapping_event_res_v1);
rpc submit_radio_location_estimates(radio_location_estimates_req_v1)
returns (radio_location_estimates_resp_v1);
}

message file_info {
Expand Down Expand Up @@ -824,7 +826,7 @@ message radio_location_estimate_v1 {
repeated rle_event_v1 events = 3;
}

message radio_location_estimates_v1 {
message radio_location_estimates_req_v1 {
string radio_id = 1;
repeated radio_location_estimate_v1 estimates = 2;
// unix epoch timestamp in seconds
Expand All @@ -833,3 +835,5 @@ message radio_location_estimates_v1 {
bytes signer = 4;
bytes signature = 5;
}

message radio_location_estimates_resp_v1 { string id = 1; }

0 comments on commit d7eea3f

Please sign in to comment.