20 lines
271 B
Protocol Buffer
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;
|
|
}
|