summaryrefslogtreecommitdiff
path: root/portmap.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-09 09:30:39 -0500
committerJeff Carr <[email protected]>2025-03-09 09:30:39 -0500
commit2495995e6e50be78e8501eeeaf1a1b7cf067e6ae (patch)
treecb4b867efc5402cfcab7ab9ffcfc315a5140aa73 /portmap.proto
parent66000419bf15cb255e436db44a2a74bf104484e3 (diff)
testing ConfigSave() and load
Diffstat (limited to 'portmap.proto')
-rw-r--r--portmap.proto7
1 files changed, 4 insertions, 3 deletions
diff --git a/portmap.proto b/portmap.proto
index a3c3964..e9e21ff 100644
--- a/portmap.proto
+++ b/portmap.proto
@@ -14,13 +14,14 @@ message Events {
}
message Portmap {
- int64 listen = 1;
- string connect = 2;
+ int64 listen = 1; // `autogenpb:unique`
+ string connect = 2; // `autogenpb:unique`
bool enabled = 3;
}
-message Portmaps { // `autogenpb:marshal` `autogenpb:gui`
+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;
}