go-libp2p-core/peer/pb/peer_record.proto
Yusef Napora 2e8cabcc87 rename RoutingStateRecord -> PeerRecord
also removes embedded reference to Envelope from the record,
as that was confusing.

as a result, the CertifiedAddrBook now accepts/returns
record.SignedEnvelope instead of a specialized type.
2020-01-17 10:42:26 -05:00

13 lines
204 B
Protocol Buffer

syntax = "proto3";
package peer.pb;
message PeerRecord {
message AddressInfo {
bytes multiaddr = 1;
}
bytes peerId = 1;
uint64 seq = 2;
repeated AddressInfo addresses = 3;
}