This commit is contained in:
Miek Gieben 2012-08-24 08:57:33 +02:00
parent de20557d38
commit 2d90a06ade
1 changed files with 3 additions and 3 deletions

6
dns.go
View File

@ -62,14 +62,14 @@
// An asynchronous query is also possible, see client.Do and client.DoRtt.
//
// From a birds eye view a dns message consists out of four sections.
// The question section: m.Question, the answer answer section: m.Answer,
// the authority section: m.Ns and the additional section: m.Extra.
// The question section: in.Question, the answer answer section: in.Answer,
// the authority section: in.Ns and the additional section: in.Extra.
//
// Each of these sections (except the Question section) contain a []RR. Basic
// use pattern for accessing the rdata of a TXT RR as the first RR in
// the Answer section:
//
// if t, ok := m.Answer[0].(*RR_TXT); ok {
// if t, ok := in.Answer[0].(*RR_TXT); ok {
// // do something with t.Txt
// }
package dns