summaryrefslogtreecommitdiff
path: root/caddyconfig/httpcaddyfile/addresses.go
diff options
context:
space:
mode:
Diffstat (limited to 'caddyconfig/httpcaddyfile/addresses.go')
-rw-r--r--caddyconfig/httpcaddyfile/addresses.go26
1 files changed, 3 insertions, 23 deletions
diff --git a/caddyconfig/httpcaddyfile/addresses.go b/caddyconfig/httpcaddyfile/addresses.go
index 7105320..a4f07ae 100644
--- a/caddyconfig/httpcaddyfile/addresses.go
+++ b/caddyconfig/httpcaddyfile/addresses.go
@@ -337,7 +337,9 @@ func (a Address) Normalize() Address {
// ensure host is normalized if it's an IP address
host := strings.TrimSpace(a.Host)
if ip := net.ParseIP(host); ip != nil {
- host = ip.String()
+ if ipv6 := ip.To16(); ipv6 != nil && ipv6.DefaultMask() == nil {
+ host = ipv6.String()
+ }
}
return Address{
@@ -349,28 +351,6 @@ func (a Address) Normalize() Address {
}
}
-// Key returns a string form of a, much like String() does, but this
-// method doesn't add anything default that wasn't in the original.
-func (a Address) Key() string {
- res := ""
- if a.Scheme != "" {
- res += a.Scheme + "://"
- }
- if a.Host != "" {
- res += a.Host
- }
- // insert port only if the original has its own explicit port
- if a.Port != "" &&
- len(a.Original) >= len(res) &&
- strings.HasPrefix(a.Original[len(res):], ":"+a.Port) {
- res += ":" + a.Port
- }
- if a.Path != "" {
- res += a.Path
- }
- return res
-}
-
// lowerExceptPlaceholders lowercases s except within
// placeholders (substrings in non-escaped '{ }' spans).
// See https://github.com/caddyserver/caddy/issues/3264