Add core handler for identify protocol

This commit is contained in:
Alex Stokes
2019-10-25 18:51:24 +09:00
parent 700209c50a
commit 08b57fa2ee
7 changed files with 216 additions and 0 deletions

View File

@ -0,0 +1,12 @@
syntax = "proto2";
package identify.pb;
message Identify {
optional string protocol_version = 5;
optional string agent_version = 6;
optional bytes public_key = 1;
repeated bytes listen_addrs = 2;
optional bytes observed_addr = 4;
repeated string protocols = 3;
}