mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-03-22 12:20:07 +08:00
13 lines
216 B
Protocol Buffer
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;
|
|
}
|