fix: distinguish timeout from negative DNS responses (closes #35)
Some checks failed
Check / check (pull_request) Failing after 5m41s

This commit is contained in:
clawbot
2026-02-28 03:27:14 -08:00
parent 70fac87254
commit 2993911883
3 changed files with 91 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ const (
StatusError = "error"
StatusNXDomain = "nxdomain"
StatusNoData = "nodata"
StatusTimeout = "timeout"
)
// MaxCNAMEDepth is the maximum CNAME chain depth to follow.