iw4x-client/src/Proto/node.proto

18 lines
227 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;
repeated Network.Address address = 2;
2016-02-11 18:36:52 -05:00
}