Documentation ¶
Index ¶
- Variables
- func AddTransport(s string) error
- func AddrInList(addr ma.Multiaddr, list []ma.Multiaddr) bool
- func AddrIsShareableOnWAN(addr ma.Multiaddr) bool
- func AddrOverNonLocalIP(a ma.Multiaddr) bool
- func AddrUsable(a ma.Multiaddr, partial bool) bool
- func AddrUsableFunc(m ma.Multiaddr) bool
- func CheckNATWarning(observed, expected ma.Multiaddr, listen []ma.Multiaddr)
- func FilterAddrs(a []ma.Multiaddr, filters ...func(ma.Multiaddr) bool) []ma.Multiaddr
- func FilterNeg(f func(ma.Multiaddr) bool) func(ma.Multiaddr) bool
- func FilterUsableAddrs(a []ma.Multiaddr) []ma.Multiaddr
- func InterfaceAddresses() ([]ma.Multiaddr, error)
- func IsFDCostlyTransport(a ma.Multiaddr) bool
- func ResolveUnspecifiedAddress(resolve ma.Multiaddr, ifaceAddrs []ma.Multiaddr) ([]ma.Multiaddr, error)
- func ResolveUnspecifiedAddresses(unspecAddrs, ifaceAddrs []ma.Multiaddr) ([]ma.Multiaddr, error)
- func Subtract(a, b []ma.Multiaddr) []ma.Multiaddr
- func SubtractFilter(addrs ...ma.Multiaddr) func(ma.Multiaddr) bool
- func WANShareableAddrs(inp []ma.Multiaddr) []ma.Multiaddr
Constants ¶
This section is empty.
Variables ¶
var SupportedTransportProtocols = [][]ma.Protocol{}
SupportedTransportProtocols is the list of supported transports for the swarm. These are []ma.Protocol lists. Populated at runtime from SupportedTransportStrings
var SupportedTransportStrings = []string{
"/ip4/tcp",
"/ip6/tcp",
"/ip4/udp/utp",
"/ip6/udp/utp",
"/ip4/tcp/ws",
"/ip6/tcp/ws",
}
SupportedTransportStrings is the list of supported transports for the swarm. These are strings of encapsulated multiaddr protocols. E.g.:
/ip4/tcp
Functions ¶
func AddTransport ¶
AddTransport adds a transport protocol combination to the list of supported transports
func AddrInList ¶
AddrInList returns whether or not an address is part of a list. this is useful to check if NAT is happening (or other bugs?)
func AddrIsShareableOnWAN ¶
AddrIsShareableOnWAN returns whether the given address should be shareable on the wide area network (wide internet).
func AddrOverNonLocalIP ¶
AddrOverNonLocalIP returns whether the addr uses a non-local ip link
func AddrUsable ¶
AddrUsable returns whether our network can use this addr. We only use the transports in SupportedTransportStrings, and we do not link local addresses. Loopback is ok as we need to be able to connect to multiple ipfs nodes in the same machine.
func AddrUsableFunc ¶
func CheckNATWarning ¶
CheckNATWarning checks if our observed addresses differ. if so, informs the user that certain things might not work yet
func FilterAddrs ¶
FilterAddrs is a filter that removes certain addresses, according the given filters. if all filters return true, the address is kept.
func FilterUsableAddrs ¶
FilterUsableAddrs removes certain addresses from a list. the addresses removed are those known NOT to work with our network. Namely, addresses with UTP.
func InterfaceAddresses ¶
InterfaceAddresses returns a list of addresses associated with local machine Note: we do not return link local addresses. IP loopback is ok, because we may be connecting to other nodes in the same machine.
func IsFDCostlyTransport ¶
IsFDCostlyTransport returns true for transports that require a new file descriptor per connection created
func ResolveUnspecifiedAddress ¶
func ResolveUnspecifiedAddress(resolve ma.Multiaddr, ifaceAddrs []ma.Multiaddr) ([]ma.Multiaddr, error)
ResolveUnspecifiedAddress expands an unspecified ip addresses (/ip4/0.0.0.0, /ip6/::) to use the known local interfaces. If ifaceAddr is nil, we request interface addresses from the network stack. (this is so you can provide a cached value if resolving many addrs)
func ResolveUnspecifiedAddresses ¶
ResolveUnspecifiedAddresses expands unspecified ip addresses (/ip4/0.0.0.0, /ip6/::) to use the known local interfaces.
func SubtractFilter ¶
SubtractFilter returns a filter func that filters all of the given addresses
Types ¶
This section is empty.