Small tweaks

This commit is contained in:
Miek Gieben 2012-01-27 08:51:24 +01:00
parent cd3181c7e4
commit 61e828d49c
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
# Alternative (more granular) approach to a DNS library.
Completely usable DNS library. Most widely used Resource Records are
supported including the DNSSEC types. It follows a lean and mean philosophy.
Complete and usable DNS library. Most widely used Resource Records are
supported, including the DNSSEC types. It follows a lean and mean philosophy.
If there is stuff you should know as a DNS programmer there isn't a convenience
function for it. For instance I'm pondering if a zone-like structure should be
implemented in the library.

View File

@ -128,10 +128,10 @@ func main() {
}
dns.HandleFunc(".", handleReflect)
go serve("udp4")
go serve("udp6")
go serve("tcp4")
go serve("tcp6")
go serve("tcp4")
go serve("udp6")
go serve("udp4")
forever:
for {
select {