mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
14 lines
316 B
Protocol Buffer
14 lines
316 B
Protocol Buffer
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;
|
|
optional bytes signedPeerRecord = 8;
|
|
}
|