FIX: fixed some bugs

ADD: added raw_track message frame
This commit is contained in:
Henry Winkel
2022-11-15 15:55:24 +01:00
parent cf1800ffba
commit 8fcf4244b0
25 changed files with 1799 additions and 158 deletions

View File

@@ -0,0 +1,15 @@
// [START declaration]
syntax = "proto3";
package messages.leave;
// import "google/protobuf/timestamp.proto";
// [END declaration]
// [START messages]
message Leave {
uint32 port = 1;
string srcAddress = 2;
}