From 20cdbd668e40b3fb1cb0e6810b4f48827c28db09 Mon Sep 17 00:00:00 2001 From: Brian Cunnie Date: Sun, 24 Aug 2025 18:45:38 -0700 Subject: [PATCH] TODO: examples of IP addresses that should resolve... ...but don't. Maybe I can tweak the regex to make these work. --- xip/xip.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xip/xip.go b/xip/xip.go index 17495e6..e04b6c2 100644 --- a/xip/xip.go +++ b/xip/xip.go @@ -788,6 +788,9 @@ func NameToA(fqdnString string, allowPublicIPs bool) []dnsmessage.AResource { // We shouldn't reach here because `match` should always be valid, but we're not optimists if ipv4address == nil { // e.g. "ubuntu20.04.235.249.181-notify.sslip.io." <- the leading zero is the problem + // funprdmongo30-03.10.1.4.133.nip.io. + // olvm-engine-01.132.145.157.105.nip.io. + // wt32-ETh01-03.172.26.131.29.NIp.IO. log.Printf("----> Should be valid A but isn't: %s\n", fqdn) // TODO: delete this return []dnsmessage.AResource{} }