Skip to content

Commit

Permalink
Merge pull request #365 from helium/andymck/invalid-speed-test-proto
Browse files Browse the repository at this point in the history
add verified speeeeedtest proto
  • Loading branch information
andymck authored Sep 14, 2023
2 parents 983596a + 1ef9058 commit 953da03
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 953da03

Please sign in to comment.