iw4x-client/src/Proto/node.proto
2016-06-26 17:28:47 +02:00

20 lines
271 B
Protocol Buffer

syntax = "proto3";
package Proto.Node;
import "network.proto";
message Packet
{
bytes challenge = 1;
bytes signature = 2;
bytes publickey = 3;
}
message List
{
bool is_dedi = 1;
repeated Network.Address address = 2;
uint32 protocol = 3;
uint32 version = 4;
}