go-libp2p-core/routing/pb/routing_state.proto
2020-01-17 10:42:26 -05:00

13 lines
216 B
Protocol Buffer

syntax = "proto3";
package routing.pb;
message RoutingStateRecord {
message AddressInfo {
bytes multiaddr = 1;
}
bytes peer_id = 1;
uint64 seq = 2;
repeated AddressInfo addresses = 3;
}