Skip to content

Commit

Permalink
add invalid speeedtest proto
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Sep 14, 2023
1 parent 39c9f23 commit 1ef9058
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ message speedtest_ingest_report_v1 {
speedtest_req_v1 report = 2;
}

enum speedtest_verification_result {
speedtest_valid = 0;
speedtest_gateway_not_found = 1;
}

message verified_speedtest {
speedtest_ingest_report_v1 report = 1;
speedtest_verification_result result = 2;
// timestamp in millis of when the packet was verified
uint64 timestamp = 3;
}

message cell_heartbeat_req_v1 {
// Public key of the hotspot
bytes pub_key = 1;
Expand Down

0 comments on commit 1ef9058

Please sign in to comment.