go-libp2p – github.com/libp2p/go-libp2p Index | Files | Directories

package libp2p

import "github.com/libp2p/go-libp2p"

Index

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 {
	addrs := []string{
		"/ip4/0.0.0.0/tcp/0",
		"/ip4/0.0.0.0/udp/0/quic-v1",
		"/ip4/0.0.0.0/udp/0/quic-v1/webtransport",
		"/ip4/0.0.0.0/udp/0/webrtc-direct",
		"/ip6/::/tcp/0",
		"/ip6/::/udp/0/quic-v1",
		"/ip6/::/udp/0/quic-v1/webtransport",
		"/ip6/::/udp/0/webrtc-direct",
	}
	listenAddrs := make([]multiaddr.Multiaddr, 0, len(addrs))
	for _, s := range addrs {
		addr, err := multiaddr.NewMultiaddr(s)
		if err != nil {
			return err
		}
		listenAddrs = append(listenAddrs, addr)
	}
	return cfg.Apply(ListenAddrs(listenAddrs...))
}

DefaultListenAddrs configures libp2p to use default listen address.

var DefaultMuxers = Muxer(yamux.ID, 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 DefaultPrivateTransports = ChainOptions(
	Transport(tcp.NewTCPTransport),
	Transport(ws.New),
)

DefaultPrivateTransports are the default libp2p transports when a PSK is supplied.

Use this option when you want to *extend* the set of transports used by libp2p instead of replacing them.

var DefaultPrometheusRegisterer = func(cfg *Config) error {
	return cfg.Apply(PrometheusRegisterer(prometheus.DefaultRegisterer))
}

DefaultPrometheusRegisterer configures libp2p to use the default registerer

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(tls.ID, tls.New),
	Security(noise.ID, noise.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),
	Transport(webtransport.New),
	Transport(libp2pwebrtc.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 = []fx.Option{}
	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

func New(opts ...Option) (host.Host, error)

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 yamux;

- 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 Ed25519 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 call `Close` on the returned Host.

func NewWithoutDefaults

func NewWithoutDefaults(opts ...Option) (host.Host, error)

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 Config

type Config = config.Config

Config describes a set of settings for a libp2p node.

type Option

type Option = config.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

func AutoNATServiceRateLimit(global, perPeer int, interval time.Duration) Option

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

func BandwidthReporter(rep metrics.Reporter) Option

BandwidthReporter configures libp2p to use the given bandwidth reporter.

func ChainOptions

func ChainOptions(opts ...Option) Option

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 DialRanker

func DialRanker(d network.DialRanker) Option

DialRanker configures libp2p to use d as the dial ranker. To enable smart dialing use `swarm.DefaultDialRanker`. use `swarm.NoDelayDialRanker` to disable smart dialing.

Deprecated: use SwarmOpts(swarm.WithDialRanker(d)) instead

func DisableIdentifyAddressDiscovery

func DisableIdentifyAddressDiscovery() Option

DisableIdentifyAddressDiscovery disables address discovery using peer provided observed addresses in identify. If you know your public addresses upfront, the recommended way is to use AddressFactory to provide the external adddress to the host and use this option to disable discovery from identify.

func DisableMetrics

func DisableMetrics() Option

DisableMetrics configures libp2p to disable prometheus metrics

func DisableRelay

func DisableRelay() Option

DisableRelay configures libp2p to disable the relay transport.

func EnableAutoNATv2

func EnableAutoNATv2() Option

EnableAutoNATv2 enables autonat v2

func EnableAutoRelay

func EnableAutoRelay(opts ...autorelay.Option) Option

EnableAutoRelay configures libp2p to enable the AutoRelay subsystem.

Dependencies:

This subsystem performs automatic address rewriting to advertise relay addresses when it detects that the node is publicly unreachable (e.g. behind a NAT).

Deprecated: Use EnableAutoRelayWithStaticRelays or EnableAutoRelayWithPeerSource

func EnableAutoRelayWithPeerSource

func EnableAutoRelayWithPeerSource(peerSource autorelay.PeerSource, opts ...autorelay.Option) Option

EnableAutoRelayWithPeerSource configures libp2p to enable the AutoRelay subsystem using the provided PeerSource callback to get more relay candidates. 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 EnableAutoRelayWithStaticRelays

func EnableAutoRelayWithStaticRelays(static []peer.AddrInfo, opts ...autorelay.Option) Option

EnableAutoRelayWithStaticRelays configures libp2p to enable the AutoRelay subsystem using the provided relays as relay candidates. 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

func EnableHolePunching(opts ...holepunch.Option) Option

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:

This subsystem performs two functions:

  1. 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.
  2. 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

func EnableRelayService(opts ...relayv2.Option) Option

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 IPv6BlackHoleSuccessCounter

func IPv6BlackHoleSuccessCounter(f *swarm.BlackHoleSuccessCounter) Option

IPv6BlackHoleSuccessCounter configures libp2p to use f as the black hole filter for IPv6 addrs

func Identity

func Identity(sk crypto.PrivKey) Option

Identity configures libp2p to use the given private key to identify itself.

func ListenAddrStrings

func ListenAddrStrings(s ...string) Option

ListenAddrStrings configures libp2p to listen on the given (unparsed) addresses.

func ListenAddrs

func ListenAddrs(addrs ...ma.Multiaddr) Option

ListenAddrs configures libp2p to listen on the given addresses.

func MultiaddrResolver

func MultiaddrResolver(rslv network.MultiaddrDNSResolver) Option

MultiaddrResolver sets the libp2p dns resolver

func Muxer

func Muxer(name string, muxer network.Multiplexer) Option

Muxer configures libp2p to use the given stream multiplexer. name is the protocol name.

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 Peerstore

func Peerstore(ps peerstore.Peerstore) Option

Peerstore configures libp2p to use the given peerstore.

func Ping

func Ping(enable bool) Option

Ping will configure libp2p to support the ping service; enable by default.

func PrivateNetwork

func PrivateNetwork(psk pnet.PSK) Option

PrivateNetwork configures libp2p to use the given private network protector.

func PrometheusRegisterer

func PrometheusRegisterer(reg prometheus.Registerer) Option

PrometheusRegisterer configures libp2p to use reg as the Registerer for all metrics subsystems

func ProtocolVersion

func ProtocolVersion(s string) Option

ProtocolVersion sets the protocolVersion string required by the libp2p Identify protocol.

func QUICReuse

func QUICReuse(constructor interface{}, opts ...quicreuse.Option) Option

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 Routing

func Routing(rt config.RoutingC) Option

Routing will configure libp2p to use routing.

func Security

func Security(name string, constructor interface{}) Option

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 ShareTCPListener

func ShareTCPListener() Option

ShareTCPListener shares the same listen address between TCP and Websocket transports. This lets both transports use the same TCP port.

Currently this behavior is Opt-in. In a future release this will be the default, and this option will be removed.

func SwarmOpts

func SwarmOpts(opts ...swarm.Option) Option

SwarmOpts configures libp2p to use swarm with opts

func Transport

func Transport(constructor 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 UDPBlackHoleSuccessCounter

func UDPBlackHoleSuccessCounter(f *swarm.BlackHoleSuccessCounter) Option

UDPBlackHoleSuccessCounter configures libp2p to use f as the black hole filter for UDP addrs

func UserAgent

func UserAgent(userAgent string) Option

UserAgent sets the libp2p user-agent sent along with the identify protocol

func WithDialTimeout

func WithDialTimeout(t time.Duration) Option

func WithFxOption

func WithFxOption(opts ...fx.Option) Option

WithFxOption adds a user provided fx.Option to the libp2p constructor. Experimental: This option is subject to change or removal.

Source Files

defaults.go libp2p.go limits.go options.go options_filter.go

Directories

PathSynopsis
config
corePackage core provides convenient access to foundational, central go-libp2p primitives via type aliases.
core/canonicallog
core/connmgrPackage connmgr provides connection tracking and management interfaces for libp2p.
core/control
core/cryptoPackage crypto implements various cryptographic utilities used by libp2p.
core/crypto/pb
core/discoveryPackage discovery provides service advertisement and peer discovery interfaces for libp2p.
core/eventPackage event contains the abstractions for a local event bus, along with the standard events that libp2p subsystems may emit.
core/hostPackage host provides the core Host interface for libp2p.
core/internal
core/metricsPackage metrics provides metrics collection and reporting interfaces for libp2p.
core/networkPackage network provides core networking abstractions for libp2p.
core/network/mocksPackage mocknetwork is a generated GoMock package.
core/peerPackage peer implements an object used to represent peers in the libp2p network.
core/peer/pb
core/peerstorePackage peerstore provides types and interfaces for local storage of address information, metadata, and public key material about libp2p peers.
core/pnetPackage pnet provides interfaces for private networking in libp2p.
core/protocolPackage protocol provides core interfaces for protocol routing and negotiation in libp2p.
core/record
core/record/pb
core/routingPackage routing provides interfaces for peer routing and content routing in libp2p.
core/secPackage sec provides secure connection and transport interfaces for libp2p.
core/sec/insecurePackage insecure provides an insecure, unencrypted implementation of the SecureConn and SecureTransport interfaces.
core/sec/insecure/pb
core/test
core/transportPackage transport provides the Transport interface, which represents the devices and network protocols used to send and receive data.
leaky_tests
p2p
p2p/discovery
p2p/discovery/backoff
p2p/discovery/mdns
p2p/discovery/mocks
p2p/discovery/routing
p2p/discovery/util
p2p/host
p2p/host/autonat
p2p/host/autonat/pb
p2p/host/autonat/test
p2p/host/autorelay
p2p/host/basic
p2p/host/basic/internal
p2p/host/blank
p2p/host/eventbus
p2p/host/peerstore
p2p/host/peerstore/pstoredsDeprecated: The database-backed peerstore will be removed from go-libp2p in the future.
p2p/host/peerstore/pstoreds/pb
p2p/host/peerstore/pstoremem
p2p/host/peerstore/test
p2p/host/pstoremanager
p2p/host/relaysvc
p2p/host/resource-managerPackage rcmgr is the resource manager for go-libp2p.
p2p/host/resource-manager/obsPackage obs implements metrics tracing for resource manager
p2p/host/routed
p2p/httpHTTP semantics with libp2p.
p2p/http/auth
p2p/http/auth/internal
p2p/http/ping
p2p/metricshelper
p2p/muxer
p2p/muxer/testsuite
p2p/muxer/yamux
p2p/net
p2p/net/conngater
p2p/net/connmgr
p2p/net/gostreamPackage gostream allows to replace the standard net stack in Go with [LibP2P](https://github.com/libp2p/libp2p) streams.
p2p/net/mockPackage mocknet provides a mock net.Network to test with.
p2p/net/nat
p2p/net/nat/internal
p2p/net/pnet
p2p/net/reuseportPackage reuseport provides a basic transport for automatically (and intelligently) reusing TCP ports.
p2p/net/simconn
p2p/net/swarm
p2p/net/swarm/testing
p2p/net/upgrader
p2p/protocol
p2p/protocol/autonatv2
p2p/protocol/autonatv2/pb
p2p/protocol/circuitv2
p2p/protocol/circuitv2/client
p2p/protocol/circuitv2/pb
p2p/protocol/circuitv2/proto
p2p/protocol/circuitv2/relay
p2p/protocol/circuitv2/util
p2p/protocol/holepunch
p2p/protocol/holepunch/pb
p2p/protocol/identify
p2p/protocol/identify/internal
p2p/protocol/identify/pb
p2p/protocol/ping
p2p/security
p2p/security/noise
p2p/security/noise/pb
p2p/security/tls
p2p/security/tls/cmd
p2p/security/tls/cmd/tlsdiag
p2p/test
p2p/test/backpressure
p2p/test/basichost
p2p/test/negotiation
p2p/test/notifications
p2p/test/quic
p2p/test/reconnectsPackage reconnect tests connect -> disconnect -> reconnect works
p2p/test/resource-manager
p2p/test/security
p2p/test/swarm
p2p/test/transport
p2p/test/webtransport
p2p/transport
p2p/transport/quic
p2p/transport/quic/cmd
p2p/transport/quic/cmd/client
p2p/transport/quic/cmd/lib
p2p/transport/quic/cmd/server
p2p/transport/quicreuse
p2p/transport/tcp
p2p/transport/tcpreuse
p2p/transport/tcpreuse/internal
p2p/transport/testsuite
p2p/transport/webrtcPackage libp2pwebrtc implements the WebRTC transport for go-libp2p, as described in https://github.com/libp2p/specs/tree/master/webrtc.
p2p/transport/webrtc/pb
p2p/transport/webrtc/udpmuxThe udpmux package contains the logic for multiplexing multiple WebRTC (ICE) connections over a single UDP socket.
p2p/transport/websocketPackage websocket implements a websocket based transport for go-libp2p.
p2p/transport/webtransport
Version
v0.41.1 (latest)
Published
Mar 24, 2025
Platform
linux/amd64
Imports
43 packages
Last checked
2 weeks ago

Tools for package owners.