Documentation ¶
Index ¶
- Variables
- func New(ctx context.Context, opts ...Option) (host.Host, error)
- func NewWithoutDefaults(ctx context.Context, opts ...Option) (host.Host, error)
- type Config
- type Option
- func AddrsFactory(factory config.AddrsFactory) Option
- func BandwidthReporter(rep metrics.Reporter) Option
- func ChainOptions(opts ...Option) Option
- func ConnectionManager(connman ifconnmgr.ConnManager) Option
- func EnableRelay(options ...circuit.RelayOpt) Option
- func FilterAddresses(addrs ...*net.IPNet) Option
- func Identity(sk crypto.PrivKey) Option
- func ListenAddrStrings(s ...string) Option
- func ListenAddrs(addrs ...ma.Multiaddr) Option
- func Muxer(name string, tpt interface{}) Option
- func NATManager(nm config.NATManagerC) Option
- func NATPortMap() Option
- func Peerstore(ps pstore.Peerstore) Option
- func PrivateNetwork(prot pnet.Protector) Option
- func Security(name string, tpt interface{}) Option
- func Transport(tpt interface{}) Option
Constants ¶
This section is empty.
Variables ¶
var DefaultListenAddrs = func(cfg *Config) error { defaultIP4ListenAddr, err := multiaddr.NewMultiaddr("/ip4/0.0.0.0/tcp/0") if err != nil { return err } defaultIP6ListenAddr, err := multiaddr.NewMultiaddr("/ip6/::/tcp/0") if err != nil { return err } return cfg.Apply(ListenAddrs( defaultIP4ListenAddr, defaultIP6ListenAddr, )) }
DefaultListenAddrs configures libp2p to use default listen address
var DefaultMuxers = ChainOptions( Muxer("/yamux/1.0.0", yamux.DefaultTransport), Muxer("/mplex/6.7.0", mplex.DefaultTransport), )
DefaultMuxers configures libp2p to use the stream connection multiplexers.
Use this option when you want to *extend* the set of multiplexers used by libp2p instead of replacing them.
DefaultSecurity is the default security option.
Useful when you want to extend, but not replace, the supported transport security protocols.
var DefaultTransports = ChainOptions( Transport(tcp.NewTCPTransport), Transport(ws.New), )
DefaultTransports are the default libp2p transports.
Use this option when you want to *extend* the set of multiplexers used by libp2p instead of replacing them.
var RandomIdentity = func(cfg *Config) error { priv, _, err := crypto.GenerateKeyPairWithReader(crypto.RSA, 2048, rand.Reader) if err != nil { return err } return cfg.Apply(Identity(priv)) }
RandomIdentity generates a random identity (default behaviour)
Functions ¶
func New ¶
New constructs a new libp2p node with the given options, falling back on reasonable defaults. The defaults are:
- If no transport and listen addresses are provided, the node listens to the multiaddresses "/ip4/0.0.0.0/tcp/0" and "/ip6/::/tcp/0";
- If no transport options are provided, the node uses TCP and websocket transport protocols;
- If no multiplexer configuration is provided, the node is configured by default to use the "yamux/1.0.0" and "mplux/6.7.0" stream connection multiplexers;
- If no security transport is provided, the host uses the go-libp2p's secio encrypted transport to encrypt all traffic;
- If no peer identity is provided, it generates a random RSA 2048 key-par and derives a new identity from it;
- If no peerstore is provided, the host is initialized with an empty peerstore.
Canceling the passed context will stop the returned libp2p node.
func NewWithoutDefaults ¶
NewWithoutDefaults constructs a new libp2p node with the given options but *without* falling back on reasonable defaults.
Warning: This function should not be considered a stable interface. We may choose to add required services at any time and, by using this function, you opt-out of any defaults we may provide.
Types ¶
type Option ¶
Option is a libp2p config option that can be given to the libp2p constructor (`libp2p.New`).
var DefaultPeerstore Option = func(cfg *Config) error { return cfg.Apply(Peerstore(pstore.NewPeerstore())) }
DefaultPeerstore configures libp2p to use the default peerstore.
var Defaults Option = func(cfg *Config) error { for _, def := range defaults { if err := cfg.Apply(def.opt); err != nil { return err } } return nil }
Defaults configures libp2p to use the default options. Can be combined with other options to *extend* the default options.
var FallbackDefaults Option = func(cfg *Config) error { for _, def := range defaults { if !def.fallback(cfg) { continue } if err := cfg.Apply(def.opt); err != nil { return err } } return nil }
FallbackDefaults applies default options to the libp2p node if and only if no other relevent options have been applied. will be appended to the options passed into New.
var NoSecurity Option = func(cfg *Config) error { if len(cfg.SecurityTransports) > 0 { return fmt.Errorf("cannot use security transports with an insecure libp2p configuration") } cfg.Insecure = true return nil }
NoSecurity is an option that completely disables all transport security. It's incompatible with all other transport security protocols.
func AddrsFactory ¶
func AddrsFactory(factory config.AddrsFactory) Option
AddrsFactory configures libp2p to use the given address factory.
func BandwidthReporter ¶
BandwidthReporter configures libp2p to use the given bandwidth reporter.
func ChainOptions ¶
ChainOptions chains multiple options into a single option.
func ConnectionManager ¶
func ConnectionManager(connman ifconnmgr.ConnManager) Option
ConnectionManager configures libp2p to use the given connection manager.
func EnableRelay ¶
EnableRelay configures libp2p to enable the relay transport.
func FilterAddresses ¶
FilterAddresses configures libp2p to never dial nor accept connections from the given addresses.
func ListenAddrStrings ¶
ListenAddrStrings configures libp2p to listen on the given (unparsed) addresses.
func ListenAddrs ¶
ListenAddrs configures libp2p to listen on the given addresses.
func Muxer ¶
Muxer configures libp2p to use the given stream multiplexer (or stream multiplexer constructor).
Name is the protocol name.
The transport can be a constructed mux.Transport or a function taking any subset of this libp2p node's: * Peer ID * Host * Network * Peerstore
func NATManager ¶
func NATManager(nm config.NATManagerC) Option
NATManager will configure libp2p to use the requested NATManager. This function should be passed a NATManager *constructor* that takes a libp2p Network.
func NATPortMap ¶
func NATPortMap() Option
NATPortMap configures libp2p to use the default NATManager. The default NATManager will attempt to open a port in your network's firewall using UPnP.
func PrivateNetwork ¶
PrivateNetwork configures libp2p to use the given private network protector.
func Security ¶
Security configures libp2p to use the given security transport (or transport constructor).
Name is the protocol name.
The transport can be a constructed security.Transport or a function taking any subset of this libp2p node's: * Public key * Private key * Peer ID * Host * Network * Peerstore
func Transport ¶
func Transport(tpt interface{}) Option
Transport configures libp2p to use the given transport (or transport constructor).
The transport can be a constructed transport.Transport or a function taking any subset of this libp2p node's: * Transport Upgrader (*tptu.Upgrader) * Host * Stream muxer (muxer.Transport) * Security transport (security.Transport) * Private network protector (pnet.Protector) * Peer ID * Private Key * Public Key * Address filter (filter.Filter) * Peerstore
Directories ¶
Path | Synopsis |
---|---|
p2p
|
|
net/mock
Package mocknet provides a mock net.Network to test with.
|
Package mocknet provides a mock net.Network to test with. |
test/reconnects
Package reconnect tests connect -> disconnect -> reconnect works
|
Package reconnect tests connect -> disconnect -> reconnect works |