Skip to content

Commit

Permalink
add cbsd id support
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Mar 1, 2024
1 parent 7d2e49a commit dd70f9e
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -120,22 +120,25 @@ message subscriber_location_ingest_report_v1 {
}

message hotspot_threshold_report_req_v1 {
// The onchain address of the hotspot which has met the coverage
// the id of the radio which has met the coverage threshold requirements
// CBRS radios only
string cbsd_id = 1;
// The onchain address of the gateway which has met the coverage
// threshold requirements
bytes hotspot_pubkey = 1;
bytes hotspot_pubkey = 2;
// the threshold value representing the amount of transferred bytes the
// minimum number of subscribers as defined by subscriber_threshold have
// exceeded
uint64 bytes_threshold = 2;
uint64 bytes_threshold = 3;
// the threshold value representing the minimum number of subscribers
// that have exceeded the bytes_threshold for the hotspot
uint32 subscriber_threshold = 3;
uint32 subscriber_threshold = 4;
// Unix timestamp in seconds when the thresholds were exceeded
uint64 threshold_timestamp = 4;
uint64 threshold_timestamp = 5;
// pubkey of the carrier identity service
bytes carrier_pub_key = 5;
bytes carrier_pub_key = 6;
// signed payload of the carrier identity service
bytes signature = 6;
bytes signature = 7;
}

message hotspot_threshold_report_resp_v1 { string id = 1; }
Expand All @@ -148,7 +151,10 @@ message hotspot_threshold_ingest_report_v1 {

enum hotspot_threshold_report_verification_status {
threshold_report_status_valid = 0;
threshold_report_status_invalid_carrier_key = 1;
// used to grandfather in hotspots that have received boosting
// prior to the data component of hip84 going live
threshold_report_status_legacy_valid = 1;
threshold_report_status_invalid_carrier_key = 2;
}

message verified_hotspot_threshold_ingest_report_v1 {
Expand Down

0 comments on commit dd70f9e

Please sign in to comment.