Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AddrsFactory ¶
type AddrsFactory = bhost.AddrsFactory
AddrsFactory is a function that takes a set of multiaddrs we're listening on and returns the set of multiaddrs we should advertise to the network.
type Config ¶
type Config struct { PeerKey crypto.PrivKey Transports []TptC Muxers []MsMuxC SecurityTransports []MsSecC Insecure bool Protector pnet.Protector RelayCustom bool Relay bool RelayOpts []circuit.RelayOpt ListenAddrs []ma.Multiaddr AddrsFactory bhost.AddrsFactory Filters *filter.Filters ConnManager ifconnmgr.ConnManager NATManager NATManagerC Peerstore pstore.Peerstore Reporter metrics.Reporter DisablePing bool }
Config describes a set of settings for a libp2p node
This is *not* a stable interface. Use the options defined in the root package.
type MuxC ¶
MuxC is a stream multiplex transport constructor
func MuxerConstructor ¶
MuxerConstructor creates a multiplex constructor from the passed parameter using reflection.
type NATManagerC ¶
type NATManagerC func(inet.Network) bhost.NATManager
NATManagerC is a NATManager constructor.
type Option ¶
Option is a libp2p config option that can be given to the libp2p constructor (`libp2p.New`).
type SecC ¶
SecC is a security transport constructor
func SecurityConstructor ¶
SecurityConstructor creates a security constructor from the passed parameter using reflection.
type TptC ¶
TptC is the type for libp2p transport constructors. You probably won't ever implement this function interface directly. Instead, pass your transport constructor to TransportConstructor.
func TransportConstructor ¶
TransportConstructor uses reflection to turn a function that constructs a transport into a TptC.
You can pass either a constructed transport (something that implements `transport.Transport`) or a function that takes any of:
* The local peer ID. * A transport connection upgrader. * A private key. * A public key. * A Host. * A Network. * A Peerstore. * An address filter. * A security transport. * A stream multiplexer transport. * A private network protector.
And returns a type implementing transport.Transport and, optionally, an error (as the second argument).