diff options
Diffstat (limited to 'internal/netutil/netutil.go')
-rw-r--r-- | internal/netutil/netutil.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/netutil/netutil.go b/internal/netutil/netutil.go index 8fef3115..2c457519 100644 --- a/internal/netutil/netutil.go +++ b/internal/netutil/netutil.go @@ -52,7 +52,7 @@ func init() { // allowlist). func IsBlockedLocalHostname(hostname string, allowlist []string) bool { for _, allow := range allowlist { - if hostname == allow { + if hostname == allow || allow == "*" { return false } } |