aboutsummaryrefslogtreecommitdiff
path: root/middleware/host.go
diff options
context:
space:
mode:
Diffstat (limited to 'middleware/host.go')
-rw-r--r--middleware/host.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/middleware/host.go b/middleware/host.go
deleted file mode 100644
index 65dbefbca..000000000
--- a/middleware/host.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package middleware
-
-import (
- "net"
- "strings"
-
- "github.com/miekg/dns"
-)
-
-// Host represents a host from the Corefile, may contain port.
-type (
- Host string
- Addr string
-)
-
-// Normalize will return the host portion of host, stripping
-// of any port. The host will also be fully qualified and lowercased.
-func (h Host) Normalize() string {
- // separate host and port
- host, _, err := net.SplitHostPort(string(h))
- if err != nil {
- host, _, _ = net.SplitHostPort(string(h) + ":")
- }
- return strings.ToLower(dns.Fqdn(host))
-}
-
-// Normalize will return a normalized address, if not port is specified
-// port 53 is added, otherwise the port will be left as is.
-func (a Addr) Normalize() string {
- // separate host and port
- addr, port, err := net.SplitHostPort(string(a))
- if err != nil {
- addr, port, _ = net.SplitHostPort(string(a) + ":53")
- }
- return net.JoinHostPort(addr, port)
-}