Documentation ¶
Index ¶
- Variables
- func New(opts ...Option) (host.Host, error)
- func NewWithoutDefaults(opts ...Option) (host.Host, error)
- func SetDefaultServiceLimits(config *rcmgr.ScalingLimitConfig)
- type Config
- type Option
- func AddrsFactory(factory config.AddrsFactory) Option
- func AutoNATServiceRateLimit(global, perPeer int, interval time.Duration) Option
- func BandwidthReporter(rep metrics.Reporter) Option
- func ChainOptions(opts ...Option) Option
- func ConnectionGater(cg connmgr.ConnectionGater) Option
- func ConnectionManager(connman connmgr.ConnManager) Option
- func DefaultStaticRelays() Option
- func DisableRelay() Option
- func EnableAutoRelay(opts ...autorelay.Option) Option
- func EnableHolePunching(opts ...holepunch.Option) Option
- func EnableNATService() Option
- func EnableRelay() Option
- func EnableRelayService(opts ...relayv2.Option) Option
- func ForceReachabilityPrivate() Option
- func ForceReachabilityPublic() Option
- func Identity(sk crypto.PrivKey) Option
- func ListenAddrStrings(s ...string) Option
- func ListenAddrs(addrs ...ma.Multiaddr) Option
- func MultiaddrResolver(rslv *madns.Resolver) Option
- func Muxer(name string, tpt interface{}) Option
- func NATManager(nm config.NATManagerC) Option
- func NATPortMap() Option
- func Peerstore(ps peerstore.Peerstore) Option
- func Ping(enable bool) Option
- func PrivateNetwork(psk pnet.PSK) Option
- func ProtocolVersion(s string) Option
- func ResourceManager(rcmgr network.ResourceManager) Option
- func Routing(rt config.RoutingC) Option
- func Security(name string, tpt interface{}) Option
- func StaticRelays(relays []peer.AddrInfo) Option
- func Transport(tpt interface{}, opts ...interface{}) Option
- func UserAgent(userAgent string) Option
- func WithDialTimeout(t time.Duration) Option
Constants ¶
This section is empty.
Variables ¶
var DefaultConnectionManager = func(cfg *Config) error { mgr, err := connmgr.NewConnManager(160, 192) if err != nil { return err } return cfg.Apply(ConnectionManager(mgr)) }
DefaultConnectionManager creates a default connection manager
var DefaultEnableRelay = func(cfg *Config) error { return cfg.Apply(EnableRelay()) }
DefaultEnableRelay enables relay dialing and listening by default.
var DefaultListenAddrs = func(cfg *Config) error { defaultIP4TCPListenAddr, err := multiaddr.NewMultiaddr("/ip4/0.0.0.0/tcp/0") if err != nil { return err } defaultIP4QUICListenAddr, err := multiaddr.NewMultiaddr("/ip4/0.0.0.0/udp/0/quic") if err != nil { return err } defaultIP6TCPListenAddr, err := multiaddr.NewMultiaddr("/ip6/::/tcp/0") if err != nil { return err } defaultIP6QUICListenAddr, err := multiaddr.NewMultiaddr("/ip6/::/udp/0/quic") if err != nil { return err } return cfg.Apply(ListenAddrs( defaultIP4TCPListenAddr, defaultIP4QUICListenAddr, defaultIP6TCPListenAddr, defaultIP6QUICListenAddr, )) }
DefaultListenAddrs configures libp2p to use default listen address.
var DefaultMultiaddrResolver = func(cfg *Config) error { return cfg.Apply(MultiaddrResolver(madns.DefaultResolver)) }
DefaultMultiaddrResolver creates a default connection manager
var DefaultMuxers = Muxer("/yamux/1.0.0", yamux.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.
var DefaultResourceManager = func(cfg *Config) error { limits := rcmgr.DefaultLimits SetDefaultServiceLimits(&limits) mgr, err := rcmgr.NewResourceManager(rcmgr.NewFixedLimiter(limits.AutoScale())) if err != nil { return err } return cfg.Apply(ResourceManager(mgr)) }
var DefaultSecurity = ChainOptions( Security(noise.ID, noise.New), Security(tls.ID, tls.New), )
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(quic.NewTransport), Transport(ws.New), )
DefaultTransports are the default libp2p transports.
Use this option when you want to *extend* the set of transports used by libp2p instead of replacing them.
var NoListenAddrs = func(cfg *Config) error { cfg.ListenAddrs = []ma.Multiaddr{} if !cfg.RelayCustom { cfg.RelayCustom = true cfg.Relay = false } return nil }
NoListenAddrs will configure libp2p to not listen by default.
This will both clear any configured listen addrs and prevent libp2p from applying the default listen address option. It also disables relay, unless the user explicitly specifies with an option, as the transport creates an implicit listen address that would make the node dialable through any relay it was connected to.
var NoTransports = func(cfg *Config) error { cfg.Transports = []config.TptC{} return nil }
NoTransports will configure libp2p to not enable any transports.
This will both clear any configured transports (specified in prior libp2p options) and prevent libp2p from applying the default transports.
var RandomIdentity = func(cfg *Config) error { priv, _, err := crypto.GenerateEd25519Key(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, websocket and QUIC 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 noise and/or tls encrypted transport to encrypt all traffic;
- If no peer identity is provided, it generates a random RSA 2048 key-pair and derives a new identity from it;
- If no peerstore is provided, the host is initialized with an empty peerstore.
To stop/shutdown the returned libp2p node, the user needs to cancel the passed context and call `Close` on the returned Host.
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.
func SetDefaultServiceLimits ¶
func SetDefaultServiceLimits(config *rcmgr.ScalingLimitConfig)
SetDefaultServiceLimits sets the default limits for bundled libp2p services
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 { ps, err := pstoremem.NewPeerstore() if err != nil { return err } return cfg.Apply(Peerstore(ps)) }
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 relevant 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 AutoNATServiceRateLimit ¶
AutoNATServiceRateLimit changes the default rate limiting configured in helping other peers determine their reachability status. When set, the host will limit the number of requests it responds to in each 60 second period to the set numbers. A value of '0' disables throttling.
func BandwidthReporter ¶
BandwidthReporter configures libp2p to use the given bandwidth reporter.
func ChainOptions ¶
ChainOptions chains multiple options into a single option.
func ConnectionGater ¶
func ConnectionGater(cg connmgr.ConnectionGater) Option
ConnectionGater configures libp2p to use the given ConnectionGater to actively reject inbound/outbound connections based on the lifecycle stage of the connection.
For more information, refer to go-libp2p/core.ConnectionGater.
func ConnectionManager ¶
func ConnectionManager(connman connmgr.ConnManager) Option
ConnectionManager configures libp2p to use the given connection manager.
The current "standard" connection manager lives in github.com/libp2p/go-libp2p-connmgr. See https://pkg.go.dev/github.com/libp2p/go-libp2p-connmgr?utm_source=godoc#NewConnManager.
func DefaultStaticRelays ¶
func DefaultStaticRelays() Option
DefaultStaticRelays configures the static relays to use the known PL-operated relays. Deprecated: pass autorelay.WithDefaultStaticRelays to EnableAutoRelay.
func DisableRelay ¶
func DisableRelay() Option
DisableRelay configures libp2p to disable the relay transport.
func EnableAutoRelay ¶
EnableAutoRelay configures libp2p to enable the AutoRelay subsystem.
Dependencies:
- Relay (enabled by default)
- Routing (to find relays), or StaticRelays/DefaultStaticRelays.
This subsystem performs automatic address rewriting to advertise relay addresses when it detects that the node is publicly unreachable (e.g. behind a NAT).
func EnableHolePunching ¶
Experimental EnableHolePunching enables NAT traversal by enabling NATT'd peers to both initiate and respond to hole punching attempts to create direct/NAT-traversed connections with other peers. (default: disabled)
Dependencies:
- Relay (enabled by default)
This subsystem performs two functions:
- On receiving an inbound Relay connection, it attempts to create a direct connection with the remote peer by initiating and co-ordinating a hole punch over the Relayed connection.
- If a peer sees a request to co-ordinate a hole punch on an outbound Relay connection, it will participate in the hole-punch to create a direct connection with the remote peer.
If the hole punch is successful, all new streams will thereafter be created on the hole-punched connection. The Relayed connection will eventually be closed after a grace period.
All existing indefinite long-lived streams on the Relayed connection will have to re-opened on the hole-punched connection by the user. Users can make use of the `Connected`/`Disconnected` notifications emitted by the Network for this purpose.
It is not mandatory but nice to also enable the `AutoRelay` option (See `EnableAutoRelay`) so the peer can discover and connect to Relay servers if it discovers that it is NATT'd and has private reachability via AutoNAT. This will then enable it to advertise Relay addresses which can be used to accept inbound Relay connections to then co-ordinate a hole punch.
If `EnableAutoRelay` is configured and the user is confident that the peer has private reachability/is NATT'd, the `ForceReachabilityPrivate` option can be configured to short-circuit reachability discovery via AutoNAT so the peer can immediately start connecting to Relay servers.
If `EnableAutoRelay` is configured, the `StaticRelays` option can be used to configure a static set of Relay servers for `AutoRelay` to connect to so that it does not need to discover Relay servers via Routing.
func EnableNATService ¶
func EnableNATService() Option
EnableNATService configures libp2p to provide a service to peers for determining their reachability status. When enabled, the host will attempt to dial back to peers, and then tell them if it was successful in making such connections.
func EnableRelay ¶
func EnableRelay() Option
EnableRelay configures libp2p to enable the relay transport. This option only configures libp2p to accept inbound connections from relays and make outbound connections_through_ relays when requested by the remote peer. This option supports both circuit v1 and v2 connections. (default: enabled)
func EnableRelayService ¶
EnableRelayService configures libp2p to run a circuit v2 relay, if we detect that we're publicly reachable.
func ForceReachabilityPrivate ¶
func ForceReachabilityPrivate() Option
ForceReachabilityPrivate overrides automatic reachability detection in the AutoNAT subsystem, forceing the local node to believe it is behind a NAT and not reachable externally.
func ForceReachabilityPublic ¶
func ForceReachabilityPublic() Option
ForceReachabilityPublic overrides automatic reachability detection in the AutoNAT subsystem, forcing the local node to believe it is reachable externally.
func ListenAddrStrings ¶
ListenAddrStrings configures libp2p to listen on the given (unparsed) addresses.
func ListenAddrs ¶
ListenAddrs configures libp2p to listen on the given addresses.
func MultiaddrResolver ¶
MultiaddrResolver sets the libp2p dns resolver
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 ProtocolVersion ¶
ProtocolVersion sets the protocolVersion string required by the libp2p Identify protocol.
func ResourceManager ¶
func ResourceManager(rcmgr network.ResourceManager) Option
ResourceManager configures libp2p to use the given ResourceManager. When using the p2p/host/resource-manager implementation of the ResourceManager interface, it is recommended to set limits for libp2p protocol by calling SetDefaultServiceLimits.
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 StaticRelays ¶
StaticRelays configures known relays for autorelay; when this option is enabled then the system will use the configured relays instead of querying the DHT to discover relays. Deprecated: pass an autorelay.WithStaticRelays option to EnableAutoRelay.
func Transport ¶
func Transport(tpt interface{}, opts ...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
func WithDialTimeout ¶
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package core provides convenient access to foundational, central go-libp2p primitives via type aliases.
|
Package core provides convenient access to foundational, central go-libp2p primitives via type aliases. |
connmgr
Package connmgr provides connection tracking and management interfaces for libp2p.
|
Package connmgr provides connection tracking and management interfaces for libp2p. |
crypto
Package crypto implements various cryptographic utilities used by libp2p.
|
Package crypto implements various cryptographic utilities used by libp2p. |
discovery
Package discovery provides service advertisement and peer discovery interfaces for libp2p.
|
Package discovery provides service advertisement and peer discovery interfaces for libp2p. |
event
Package event contains the abstractions for a local event bus, along with the standard events that libp2p subsystems may emit.
|
Package event contains the abstractions for a local event bus, along with the standard events that libp2p subsystems may emit. |
host
Package host provides the core Host interface for libp2p.
|
Package host provides the core Host interface for libp2p. |
introspection
Package introspection is EXPERIMENTAL.
|
Package introspection is EXPERIMENTAL. |
introspection/pb
Package introspection/pb contains the protobuf definitions and objects for that form the libp2p introspection protocol.
|
Package introspection/pb contains the protobuf definitions and objects for that form the libp2p introspection protocol. |
metrics
Package metrics provides metrics collection and reporting interfaces for libp2p.
|
Package metrics provides metrics collection and reporting interfaces for libp2p. |
network
Package network provides core networking abstractions for libp2p.
|
Package network provides core networking abstractions for libp2p. |
network/mocks
Package mocknetwork is a generated GoMock package.
|
Package mocknetwork is a generated GoMock package. |
peer
Package peer implements an object used to represent peers in the libp2p network.
|
Package peer implements an object used to represent peers in the libp2p network. |
peerstore
Package peerstore provides types and interfaces for local storage of address information, metadata, and public key material about libp2p peers.
|
Package peerstore provides types and interfaces for local storage of address information, metadata, and public key material about libp2p peers. |
pnet
Package pnet provides interfaces for private networking in libp2p.
|
Package pnet provides interfaces for private networking in libp2p. |
protocol
Package protocol provides core interfaces for protocol routing and negotiation in libp2p.
|
Package protocol provides core interfaces for protocol routing and negotiation in libp2p. |
routing
Package routing provides interfaces for peer routing and content routing in libp2p.
|
Package routing provides interfaces for peer routing and content routing in libp2p. |
sec
Package sec provides secure connection and transport interfaces for libp2p.
|
Package sec provides secure connection and transport interfaces for libp2p. |
sec/insecure
Package insecure provides an insecure, unencrypted implementation of the the SecureConn and SecureTransport interfaces.
|
Package insecure provides an insecure, unencrypted implementation of the the SecureConn and SecureTransport interfaces. |
transport
Package transport provides the Transport interface, which represents the devices and network protocols used to send and receive data.
|
Package transport provides the Transport interface, which represents the devices and network protocols used to send and receive data. |
p2p
|
|
host/resource-manager
Package rcmgr is the resource manager for go-libp2p.
|
Package rcmgr is the resource manager for go-libp2p. |
muxer/muxer-multistream
Package muxer_multistream implements a peerstream transport using go-multistream to select the underlying stream muxer
|
Package muxer_multistream implements a peerstream transport using go-multistream to select the underlying stream muxer |
net/mock
Package mocknet provides a mock net.Network to test with.
|
Package mocknet provides a mock net.Network to test with. |
net/reuseport
Package reuseport provides a basic transport for automatically (and intelligently) reusing TCP ports.
|
Package reuseport provides a basic transport for automatically (and intelligently) reusing TCP ports. |
test/reconnects
Package reconnect tests connect -> disconnect -> reconnect works
|
Package reconnect tests connect -> disconnect -> reconnect works |
transport/websocket
Package websocket implements a websocket based transport for go-libp2p.
|
Package websocket implements a websocket based transport for go-libp2p. |