iw4x-client/src/Proto/node.proto

20 lines
271 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package Proto.Node;
import "network.proto";
message Packet
2016-02-11 18:36:52 -05:00
{
bytes challenge = 1;
bytes signature = 2;
bytes publickey = 3;
}
message List
{
bool is_dedi = 1;
2016-02-12 16:23:41 -05:00
repeated Network.Address address = 2;
2016-06-14 09:04:58 -04:00
uint32 protocol = 3;
2016-06-26 11:28:47 -04:00
uint32 version = 4;
2016-02-11 18:36:52 -05:00
}