Skip to content
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
8 changes: 7 additions & 1 deletion src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,14 @@ enum carrier_id_v2 {
message enabled_carriers_info_req_v1 {
// The on-chain address of the gateway (public key in binary format).
bytes hotspot_pubkey = 1;
// List of carriers enabled for data offload.
// List of carriers enabled for data offload
repeated carrier_id_v2 enabled_carriers = 2;
// List of carriers enabled for demand sampling,
// Should be "disjoint" from enabled_carriers above.
// That is, a carrier should not be activated for both offload and demand
// sampling at the same time and therefore should not exist in both lists at
// the same time.
repeated carrier_id_v2 sampling_enabled_carriers = 7;
// The firmware version running on the hotspot.
string firmware_version = 3;
// Timestamp in milliseconds since the Unix epoch when this message was
Expand Down