dns/edns.go

48 lines
996 B
Go
Raw Normal View History

package dns
// Implementation of EDNS0, RFC 2671
const (
2010-12-23 21:02:01 +11:00
OptionCodeLLQ = 1
OptionCodeUL = 2
OptionCodeNSID = 3
// EDNS flag bits (put in Z section)
_DO = 1 << 15 // dnssec ok
)
2010-12-22 22:26:50 +11:00
type Option struct {
2010-12-23 21:02:01 +11:00
Code uint16
Data string "hex"
}
// EDNS extended RR.
// Not used yet
type EDNS0_Header struct {
2010-12-23 21:02:01 +11:00
Name string "extended-name"
Opt uint16 // was type, but is always TypeOPT
2010-12-23 21:02:01 +11:00
UDPSize uint16 // was class
ExtendedRcode uint8 // was TTL
Version uint8 // was TTL
Z uint16 // was TTL (all flags should be put here)
Rdlength uint16 // length of data after the header
}
type RR_OPT struct {
2010-12-23 21:02:01 +11:00
Hdr RR_Header // this must become a EDNS0_Header
Option []Option "OPT" // Tag is used in pack and unpack
}
func (rr *RR_OPT) Header() *RR_Header {
2010-12-23 21:02:01 +11:00
return &rr.Hdr
}
func (rr *RR_OPT) String() string {
2010-12-23 21:02:01 +11:00
s := rr.Hdr.String()
for _, o := range rr.Option {
switch o.Code {
case OptionCodeNSID:
s += "NSID: " + o.Data
}
}
return s
}