Documentation
¶
Index ¶
- type Handler
- type IpfsNetwork
- func (n *IpfsNetwork) Close() error
- func (n *IpfsNetwork) ClosePeer(p *peer.Peer) error
- func (n *IpfsNetwork) DialPeer(p *peer.Peer) error
- func (n *IpfsNetwork) GetProtocols() *mux.ProtocolMap
- func (n *IpfsNetwork) IsConnected(p *peer.Peer) (bool, error)
- func (n *IpfsNetwork) SendMessage(m msg.NetMessage) error
- type Network
- type Sender
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IpfsNetwork ¶
type IpfsNetwork struct {
// contains filtered or unexported fields
}
IpfsNetwork implements the Network interface,
func NewIpfsNetwork ¶
func NewIpfsNetwork(ctx context.Context, local *peer.Peer, peers peer.Peerstore, pmap *mux.ProtocolMap) (*IpfsNetwork, error)
NewIpfsNetwork is the structure that implements the network interface
func (*IpfsNetwork) Close ¶
func (n *IpfsNetwork) Close() error
Close terminates all network operation
func (*IpfsNetwork) ClosePeer ¶
func (n *IpfsNetwork) ClosePeer(p *peer.Peer) error
ClosePeer connection to peer
func (*IpfsNetwork) DialPeer ¶
func (n *IpfsNetwork) DialPeer(p *peer.Peer) error
DialPeer attempts to establish a connection to a given peer
func (*IpfsNetwork) GetProtocols ¶
func (n *IpfsNetwork) GetProtocols() *mux.ProtocolMap
GetProtocols returns the protocols registered in the network.
func (*IpfsNetwork) IsConnected ¶
func (n *IpfsNetwork) IsConnected(p *peer.Peer) (bool, error)
IsConnected returns whether a connection to given peer exists.
func (*IpfsNetwork) SendMessage ¶
func (n *IpfsNetwork) SendMessage(m msg.NetMessage) error
SendMessage sends given Message out
type Network ¶
type Network interface { // DialPeer attempts to establish a connection to a given peer DialPeer(*peer.Peer) error // ClosePeer connection to peer ClosePeer(*peer.Peer) error // IsConnected returns whether a connection to given peer exists. IsConnected(*peer.Peer) (bool, error) // GetProtocols returns the protocols registered in the network. GetProtocols() *mux.ProtocolMap // SendMessage sends given Message out SendMessage(msg.NetMessage) error // Close terminates all network operation Close() error }
Network is the interface IPFS uses for connecting to the world.
type Sender ¶
type Sender interface { // SendMessage sends out a given message, without expecting a response. SendMessage(ctx context.Context, m msg.NetMessage) error // SendRequest sends out a given message, and awaits a response. // Set Deadlines or cancellations in the context.Context you pass in. SendRequest(ctx context.Context, m msg.NetMessage) (msg.NetMessage, error) }
Sender interface for network services.
Click to show internal directories.
Click to hide internal directories.