* Move functions from pkg/transport to pkg/parse Although "parse" is a fairly generic name I believe this is somewhat better named. pkg/transport keeps a few constants that are uses throughout for the rest is is renaming a bunch (and the fallout from there to make things compile again). Signed-off-by: Miek Gieben <miek@miek.nl> * Fix tests Signed-off-by: Miek Gieben <miek@miek.nl>
21 lines
453 B
Go
21 lines
453 B
Go
package transport
|
|
|
|
// These transports are supported by CoreDNS.
|
|
const (
|
|
DNS = "dns"
|
|
TLS = "tls"
|
|
GRPC = "grpc"
|
|
HTTPS = "https"
|
|
)
|
|
|
|
// Port numbers for the various transports.
|
|
const (
|
|
// Port is the default port for DNS
|
|
Port = "53"
|
|
// TLSPort is the default port for DNS-over-TLS.
|
|
TLSPort = "853"
|
|
// GRPCPort is the default port for DNS-over-gRPC.
|
|
GRPCPort = "443"
|
|
// HTTPSPort is the default port for DNS-over-HTTPS.
|
|
HTTPSPort = "443"
|
|
)
|