This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2023-03-23 00:10:14 +01:00

13 lines
260 B
Protocol Buffer

syntax = "proto3";
// Client <-> Server
// address:
// Client -> Server: destination
// Server -> Client: source
// data: message data
message Message {
required fixed64 address = 1;
required fixed32 port = 2;
required bytes data = 3;
}