mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-05-04 10:03:07 +00:00
This makes it possible to add gateways to a multicast-group, which in case configured will always be used for transmitting the multicast downlinks. This also moves the multicast class-c scheduling to the multicast-group configuration. Options are delay between multiple gateways, or GPS time synchronized transmission.
25 lines
577 B
Protocol Buffer
Vendored
25 lines
577 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
|
|
package api;
|
|
|
|
option go_package = "github.com/chirpstack/chirpstack/api/go/v4/api";
|
|
option java_package = "io.chirpstack.api";
|
|
option java_multiple_files = true;
|
|
option java_outer_classname = "RequestLogProto";
|
|
option csharp_namespace = "Chirpstack.Api";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
import "chirpstack-api/common/common.proto";
|
|
import "chirpstack-api/gw/gw.proto";
|
|
|
|
message RequestLog {
|
|
// API service name.
|
|
string service = 1;
|
|
|
|
// API method name.
|
|
string method = 2;
|
|
|
|
// Metadata.
|
|
map<string, string> metadata = 3;
|
|
}
|