documentation

This commit is contained in:
Miek Gieben 2012-11-20 10:10:09 +01:00
parent d114d23cd2
commit aaa65c0ae0
2 changed files with 3 additions and 1 deletions

2
dns.go
View File

@ -61,7 +61,7 @@
// c := new(Client)
// in, rtt, err := c.Exchange(m1, "127.0.0.1:53")
//
// For asynchronous queries it is easy to wrap C.Exchange().
// For asynchronous queries it is easy to wrap Exchange().
//
// From a birds eye view a dns message consists out of four sections.
// The question section: in.Question, the answer section: in.Answer,

View File

@ -13,6 +13,8 @@
// m.SetEdns0(4096, true)
//
// Signature generation, signature verification and key generation are all supported.
// Writing a DNSSEC validating resolver is hard, if you need something like that you
// might want to use the unbound wrapper found at github.com/miekg/unbound .
package dns
import (