summaryrefslogtreecommitdiff
path: root/portmap.proto
diff options
context:
space:
mode:
Diffstat (limited to 'portmap.proto')
-rw-r--r--portmap.proto14
1 files changed, 14 insertions, 0 deletions
diff --git a/portmap.proto b/portmap.proto
new file mode 100644
index 0000000..c798895
--- /dev/null
+++ b/portmap.proto
@@ -0,0 +1,14 @@
+syntax = "proto3";
+
+package gus;
+
+message Portmap {
+ int64 listen = 1;
+ string connect = 2;
+}
+
+message Portmaps { // `autogenpb:marshal` `autogenpb:gui`
+ string uuid = 1; // `autogenpb:uuid:49a865ea-292d-48fd-8dc2-d0f82d5fd016`
+ string version = 2; // `autogenpb:version:v0.0.1`
+ repeated Portmap portmaps = 3;
+}