Documentation ¶
Overview ¶
Package dnstype defines types for working with DNS.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Resolver ¶
type Resolver struct { // Addr is the address of the DNS resolver, one of: // - A plain IP address for a "classic" UDP+TCP DNS resolver // - [TODO] "tls://resolver.com" for DNS over TCP+TLS // - [TODO] "https://resolver.com/query-tmpl" for DNS over HTTPS Addr string `json:",omitempty"` // BootstrapResolution is an optional suggested resolution for the // DoT/DoH resolver, if the resolver URL does not reference an IP // address directly. // BootstrapResolution may be empty, in which case clients should // look up the DoT/DoH server using their local "classic" DNS // resolver. BootstrapResolution []netaddr.IP `json:",omitempty"` }
Resolver is the configuration for one DNS resolver.
func ResolverFromIP ¶ added in v1.16.0
ResolverFromIP defines a Resolver for ip on port 53.
Click to show internal directories.
Click to hide internal directories.