Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add seniority update as alternative to adding seniority ts to heartbeat #356

Merged
merged 2 commits into from
Jul 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,20 @@ enum heartbeat_validity {
heartbeat_validity_too_far_from_coverage = 9;
}

message seniority_update {
string cbsd_id = 1;
// Timestamp of the new seniority for the radio
uint64 new_seniority_timestamp = 2;
seniority_update_reason reason = 3;
}

enum seniority_update_reason {
// We haven't seen a heartbeat for 72 hours
seniority_update_reason_heartbeat_not_seen = 0;
// A new coverage object replaces the old seniority
seniority_update_reason_new_coverage_claim_time = 1;
}

message speedtest_avg {
bytes pub_key = 1;
/// bytes/sec
Expand Down
Loading