Small tweaks

This commit is contained in:
Miek Gieben 2011-09-11 01:42:46 +02:00
parent 74935417e6
commit ab911d41f9
2 changed files with 5 additions and 3 deletions

View File

@ -5,6 +5,7 @@ things that need to be fixed.
## Todo
* Use the Exchange structure to deal with errors when resolving
* encoding NSEC3/NSEC bitmaps, DEcoding works;
* add functions to operate on []byte messages (raw packets) see rawmsg.go
* HIP RR (needs list of domain names, need slice for that);

View File

@ -1,4 +1,4 @@
// TSIG or transaction signature add a HMAC TSIG record to each message sent.
// TSIG or transaction signature adds a HMAC TSIG record to each message sent.
// Basic use pattern when querying with TSIG:
//
// m := new(Msg)
@ -11,14 +11,15 @@
// secrets := make(map[string]string)
// secrets["axfr."] = "so6ZGir4GPAqINNh9U5c3A==" // don't forget the . here
//
// The message requesting an AXFR for miek.nl with the TSIG record is now ready to use.
// The message requesting an AXFR for miek.nl with the TSIG record added is now ready to use.
// We now need a new client with access to the secrets:
//
// c := NewClient()
// c.TsigSecret = secrets
// err := c.XfrReceive(m, "85.223.71.124:53")
//
// You can now read the records from the AXFR as the come in.
// You can now read the records from the AXFR as the come in. Each envelope is checked with TSIG.
// If something is not correct an error is returned.
//
// Basic use pattern replying to a message which has TSIG set.
// TODO(mg)