net

package
v0.0.0-...-bebc87d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 4, 2014 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Handler

type Handler srv.Handler

Handler interface for network services.

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.

Directories

Path Synopsis
Package mux is a generated protocol buffer package.
Package mux is a generated protocol buffer package.
Package service is a generated protocol buffer package.
Package service is a generated protocol buffer package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳