5 Commits
Author SHA1 Message Date
clawbot 9193cb1bca fix: distinguish timeout from negative DNS responses (closes #35)
Check / check (pull_request) Failing after 5m38s
2026-02-28 03:28:44 -08:00
sneak 70fac87254 Merge pull request 'fix: remove ErrNotImplemented stub — all checks fully implemented (closes #16)' (#23) from fix/remove-unimplemented-stubs into main
Check / check (push) Waiting to run
Reviewed-on: #23
2026-02-28 12:26:27 +01:00
sneak 940f7c89da Merge branch 'main' into fix/remove-unimplemented-stubs
Check / check (pull_request) Failing after 5m45s
2026-02-28 12:09:24 +01:00
sneak 7d380aafa4 Merge branch 'main' into fix/remove-unimplemented-stubs
Check / check (pull_request) Failing after 5m42s
2026-02-28 12:08:35 +01:00
clawbot d0220e5814 fix: remove ErrNotImplemented stub — resolver, port, and TLS checks are fully implemented (closes #16)
Check / check (pull_request) Failing after 5m27s
The ErrNotImplemented sentinel error was dead code left over from
initial scaffolding. The resolver performs real iterative DNS
lookups from root servers, PortCheck does TCP connection checks,
and TLSCheck verifies TLS certificates and expiry. Removed the
unused error constant.
2026-02-21 00:55:38 -08:00
-5
View File
@@ -4,11 +4,6 @@ import "errors"
// Sentinel errors returned by the resolver.
var (
// ErrNotImplemented indicates a method is stubbed out.
ErrNotImplemented = errors.New(
"resolver not yet implemented",
)
// ErrNoNameservers is returned when no authoritative NS
// could be discovered for a domain.
ErrNoNameservers = errors.New(