29 lines
921 B
Protocol Buffer
29 lines
921 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gus;
|
|
|
|
message Event {
|
|
string hostname = 1;
|
|
string version = 2;
|
|
}
|
|
|
|
message Events {
|
|
string uuid = 1;
|
|
string version = 2;
|
|
repeated Event events = 3;
|
|
}
|
|
|
|
message Portmap {
|
|
int64 listen = 1; // `autogenpb:unique`
|
|
string connect = 2; // `autogenpb:unique`
|
|
bool enabled = 3;
|
|
string uuid = 4;
|
|
}
|
|
|
|
message Portmaps { // `autogenpb:marshal` `autogenpb:gui` `autogenpb:nomutex`
|
|
string uuid = 1; // `autogenpb:uuid:49a865ea-292d-48fd-8dc2-d0f82d5fd016`
|
|
string version = 2; // `autogenpb:version:v0.0.1`
|
|
repeated Portmap portmaps = 3;
|
|
Events events = 4;
|
|
}
|