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
ppp2-protocol/protobuf/2.0/Message.proto
T
2023-03-22 16:56:24 +01:00

13 lines
233 B
Protocol Buffer

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;
}