11 lines
136 B
Protocol Buffer
11 lines
136 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package proto.network;
|
||
|
|
||
|
message connect_info
|
||
|
{
|
||
|
bytes infostring = 1;
|
||
|
bytes publickey = 2;
|
||
|
bytes signature = 3;
|
||
|
}
|