Documentation
¶
Overview ¶
package peer implements an object used to represent peers in the ipfs network.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ID ¶
ID is a byte slice representing the identity of a peer.
func DecodePrettyID ¶
DecodePrettyID returns a b58-encoded string of the ID
func IDFromPubKey ¶
IDFromPubKey retrieves a Public Key from the peer given by pk
type Peer ¶
type Peer interface { // ID returns the peer's ID ID() ID // Key returns the ID as a Key (string) for maps. Key() u.Key // Addresses returns the peer's multiaddrs Addresses() []ma.Multiaddr // AddAddress adds the given Multiaddr address to Peer's addresses. // returns whether this was a newly added address. AddAddress(a ma.Multiaddr) bool // NetAddress returns the first Multiaddr found for a given network. NetAddress(n string) ma.Multiaddr // Priv/PubKey returns the peer's Private Key PrivKey() ic.PrivKey PubKey() ic.PubKey // LoadAndVerifyKeyPair unmarshalls, loads a private/public key pair. // Error if (a) unmarshalling fails, or (b) pubkey does not match id. LoadAndVerifyKeyPair(marshalled []byte) error VerifyAndSetPrivKey(sk ic.PrivKey) error VerifyAndSetPubKey(pk ic.PubKey) error // Get/SetLatency manipulate the current latency measurement. GetLatency() (out time.Duration) SetLatency(laten time.Duration) // Get/SetType indicate whether this is a local or remote peer GetType() Type SetType(Type) //Get/Set Agent and Protocol Versions GetVersions() (agent, protocol string) SetVersions(agent, protocol string) // Update with the data of another peer instance Update(Peer) error Loggable() map[string]interface{} }
Peer represents the identity information of an IPFS Node, including ID, and relevant Addresses.
func WithIDString ¶
WithIDString constructs a peer with given ID (string).
Click to show internal directories.
Click to hide internal directories.