Publish protocol 2.0

This commit is contained in:
2023-03-22 16:55:04 +01:00
commit 99cb5928bc
4 changed files with 91 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
syntax = "proto3";
// Client <-> Server
// address:
// Client -> Server: destination
// Server -> Client: source
// data: message data
message Message {
fixed64 address = 1;
fixed32 port = 2;
bytes data = 3;
}