iw4x-client/src/Proto/node.proto
2018-10-09 10:53:15 +02:00

17 lines
292 B
Protocol Buffer

syntax = "proto3";
package Proto.Node;
message List
{
repeated bytes nodes = 1;
// The port is used to check if a dedi sends data through a redirected port.
// This usually means the port is not forwarded
uint32 port = 2;
// Additional data
bool isNode = 3;
uint64 protocol = 4;
}