small tweaks to the docs

This commit is contained in:
Miek Gieben 2011-01-01 20:01:49 +01:00
parent 10bfb3d036
commit dc56e5e4ff
2 changed files with 2 additions and 1 deletions

1
TODO
View File

@ -2,7 +2,6 @@ Todo:
* fix os.Erros usage, add DNSSEC related errors * fix os.Erros usage, add DNSSEC related errors
* DNSSEC validation * DNSSEC validation
* NSEC(3) secure denial of existence, support the type bitmap * NSEC(3) secure denial of existence, support the type bitmap
* Notify support (send/receive)
* TKEY -- RFC 2930 * TKEY -- RFC 2930
* TSIG -- RFC 4635 * TSIG -- RFC 4635
* IDN? * IDN?

2
dns.go
View File

@ -9,6 +9,7 @@
// * 1034/1035 // * 1034/1035
// * 1876 - LOC record (incomplete) // * 1876 - LOC record (incomplete)
// * 1995 - IXFR // * 1995 - IXFR
// * 1996 - DNS notify
// * 2671 - EDNS // * 2671 - EDNS
// * 2845 - TSIG // * 2845 - TSIG
// * 2915 - NAPTR record (incomplete) // * 2915 - NAPTR record (incomplete)
@ -17,6 +18,7 @@
// * 5011 - NSID // * 5011 - NSID
// * 5936 - AXFR // * 5936 - AXFR
// * IP6 support // * IP6 support
//
// The package allows full control over what is send out to the DNS. // The package allows full control over what is send out to the DNS.
// //
package dns package dns