This commit is contained in:
Miek Gieben 2011-03-22 09:44:33 +01:00
parent bb47d77e04
commit 28b008e05e
2 changed files with 5 additions and 3 deletions

View File

@ -38,6 +38,7 @@ Miek Gieben - 2010, 2011 - miek@miek.nl
* 403{3,4,5} - DNSSEC + validation functions
* 4255 - SSHFP
* 4408 - SPF
* 4509 - SHA256 Hash in DS
* 4635 - HMAC SHA TSIG
* 5001 - NSID
* 5155 - NSEC

View File

@ -7,9 +7,10 @@ import (
// EDNS0 Options
const (
OptionCodeLLQ = 1 // not used
OptionCodeUL = 2 // not used
OptionCodeNSID = 3 // NSID, RFC5001
_ = iota
OptionCodeLLQ // not used
OptionCodeUL // not used
OptionCodeNSID // NSID, RFC5001
_DO = 1 << 7 // dnssec ok
)