dns

DNS client and server implementations using the Go project's dnsmessage package
Log | Files | Refs | README | LICENSE

commit 9f874ebabf29b3b405b3dc9f372a3817316c0ce7
parent 34b7ff6848bbacc4e57778693394019c3dcc6fbc
Author: Oliver Lowe <o@olowe.co>
Date:   Sun, 12 Dec 2021 07:49:00 +1100

doc: minor wording

Diffstat:
Mserver.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server.go b/server.go @@ -116,7 +116,7 @@ func ListenAndServe(network, addr string, handler Handler) error { return srv.ListenAndServe() } -// DefaultHandler responds to the DNS message identically. Recursive +// DefaultHandler responds to all DNS messages identically. Recursivew // queries are refused and all others are replied to with a "not // implemented" message. It is intended as a safe default for a Server // which does not set a Handler.