Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Aug 8, 2023
1 parent 312f644 commit 6be777d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ message speedtest_ingest_report_v1 {
speedtest_req_v1 report = 2;
}

enum invalid_speedtest_reason {
gateway_not_found_for_speedtest = 0;
enum speedtest_verification_result {
valid_speedtest = 0;
gateway_not_found_for_speedtest = 1;
}

message invalid_speedtest {
speedtest_req_v1 report = 1;
invalid_speedtest_reason reason = 2;
speedtest_verification_result reason = 2;
// timestamp in millis of when the packet was determined invalid
uint64 timestamp = 3;
}
Expand Down

0 comments on commit 6be777d

Please sign in to comment.