iw4x-client/src/Proto/node.proto

17 lines
292 B
Protocol Buffer
Raw Normal View History

2018-10-09 04:53:15 -04:00
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;
}