Documentation ¶
Overview ¶
Package bootstrap provides types and functions to resolve upstream hostnames and to dial retrieved addresses.
Index ¶
Constants ¶
const ErrNoResolvers errors.Error = "no resolvers specified"
ErrNoResolvers is returned when zero resolvers specified.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConsequentResolver ¶ added in v0.62.0
type ConsequentResolver []Resolver
ConsequentResolver is a slice of resolvers that are queried in order until the first successful non-empty response, as opposed to just successful response requirement in ParallelResolver.
type DialHandler ¶
DialHandler is a dial function for creating unencrypted network connections to the upstream server. It establishes the connection to the server specified at initialization and ignores the addr. network must be one of NetworkTCP or NetworkUDP.
func NewDialContext ¶
NewDialContext returns a DialHandler that dials addrs and returns the first successful connection. At least a single addr should be specified. l must not be nil.
type Network ¶ added in v0.62.0
type Network = string
Network is a network type for use in Resolver's methods.
const ( // NetworkIP is a network type for both address families. NetworkIP Network = "ip" // NetworkIP4 is a network type for IPv4 address family. NetworkIP4 Network = "ip4" // NetworkIP6 is a network type for IPv6 address family. NetworkIP6 Network = "ip6" // NetworkTCP is a network type for TCP connections. NetworkTCP Network = "tcp" // NetworkUDP is a network type for UDP connections. NetworkUDP Network = "udp" )
type ParallelResolver ¶ added in v0.58.0
type ParallelResolver []Resolver
ParallelResolver is a slice of resolvers that are queried concurrently. The first successful response is returned.
type Resolver ¶
type Resolver interface { // LookupNetIP looks up the IP addresses for the given host. network should // be one of [NetworkIP], [NetworkIP4] or [NetworkIP6]. The response may be // empty even if err is nil. All the addrs must be valid. LookupNetIP(ctx context.Context, network Network, host string) (addrs []netip.Addr, err error) }
Resolver resolves the hostnames to IP addresses. Note, that net.Resolver from standard library also implements this interface.
type StaticResolver ¶ added in v0.62.0
StaticResolver is a resolver which always responds with an underlying slice of IP addresses regardless of host and network.