Documentation updates

This commit is contained in:
Miek Gieben 2012-02-15 13:10:02 +01:00
parent 596e0618a7
commit 1637995ed0
1 changed files with 5 additions and 1 deletions

6
dns.go
View File

@ -20,10 +20,14 @@
// Or directly from a string:
//
// mx := NewRR("miek.nl. 3600 IN MX 10 mx.miek.nl.")
//
//
// Or when the default TTL (3600) and class (IN) suit you:
//
// mx := NewRR("miek.nl. MX 10 mx.miek.nl.")
//
// Or even:
//
// mx := NewRR("$ORIGIN nl.\nmiek 1H IN MX 10 mx.miek"
//
// The package dns supports (async) querying/replying, incoming/outgoing Axfr/Ixfr,
// TSIG, EDNS0, dynamic updates, notifies and DNSSEC validation/signing.