dns/update.go

113 lines
3.1 KiB
Go
Raw Permalink Normal View History

2011-08-22 12:51:10 +00:00
package dns
2011-08-22 13:16:24 +00:00
// NameUsed sets the RRs in the prereq section to
2011-08-22 12:51:10 +00:00
// "Name is in use" RRs. RFC 2136 section 2.4.4.
2011-12-09 19:56:59 +00:00
func (u *Msg) NameUsed(rr []RR) {
if u.Answer == nil {
u.Answer = make([]RR, 0, len(rr))
}
for _, r := range rr {
u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: TypeANY, Class: ClassANY}})
2011-08-22 12:51:10 +00:00
}
}
2011-08-22 13:16:24 +00:00
// NameNotUsed sets the RRs in the prereq section to
2011-08-22 12:51:10 +00:00
// "Name is in not use" RRs. RFC 2136 section 2.4.5.
2011-12-09 19:56:59 +00:00
func (u *Msg) NameNotUsed(rr []RR) {
if u.Answer == nil {
u.Answer = make([]RR, 0, len(rr))
}
for _, r := range rr {
u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: TypeANY, Class: ClassNONE}})
2011-08-22 12:51:10 +00:00
}
}
// Used sets the RRs in the prereq section to
2011-08-22 12:51:10 +00:00
// "RRset exists (value dependent -- with rdata)" RRs. RFC 2136 section 2.4.2.
func (u *Msg) Used(rr []RR) {
2011-12-09 19:56:59 +00:00
if len(u.Question) == 0 {
panic("dns: empty question section")
2011-09-08 17:41:26 +00:00
}
if u.Answer == nil {
u.Answer = make([]RR, 0, len(rr))
}
for _, r := range rr {
hdr := r.Header()
hdr.Class = u.Question[0].Qclass
hdr.Ttl = 0
u.Answer = append(u.Answer, r)
2011-08-22 12:51:10 +00:00
}
}
// RRsetUsed sets the RRs in the prereq section to
2011-08-22 12:51:10 +00:00
// "RRset exists (value independent -- no rdata)" RRs. RFC 2136 section 2.4.1.
func (u *Msg) RRsetUsed(rr []RR) {
if u.Answer == nil {
u.Answer = make([]RR, 0, len(rr))
}
for _, r := range rr {
h := r.Header()
u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: h.Name, Ttl: 0, Rrtype: h.Rrtype, Class: ClassANY}})
2011-08-22 12:51:10 +00:00
}
}
2011-08-22 13:16:24 +00:00
// RRsetNotUsed sets the RRs in the prereq section to
2011-08-22 12:51:10 +00:00
// "RRset does not exist" RRs. RFC 2136 section 2.4.3.
2011-12-09 19:56:59 +00:00
func (u *Msg) RRsetNotUsed(rr []RR) {
if u.Answer == nil {
u.Answer = make([]RR, 0, len(rr))
}
for _, r := range rr {
h := r.Header()
u.Answer = append(u.Answer, &ANY{Hdr: RR_Header{Name: h.Name, Ttl: 0, Rrtype: h.Rrtype, Class: ClassNONE}})
2011-08-22 12:51:10 +00:00
}
}
2011-08-22 13:35:52 +00:00
// Insert creates a dynamic update packet that adds an complete RRset, see RFC 2136 section 2.5.1.
func (u *Msg) Insert(rr []RR) {
2011-12-09 19:56:59 +00:00
if len(u.Question) == 0 {
panic("dns: empty question section")
2011-09-08 17:41:26 +00:00
}
if u.Ns == nil {
u.Ns = make([]RR, 0, len(rr))
}
for _, r := range rr {
r.Header().Class = u.Question[0].Qclass
u.Ns = append(u.Ns, r)
2011-08-22 13:43:52 +00:00
}
2011-08-22 13:35:52 +00:00
}
// RemoveRRset creates a dynamic update packet that deletes an RRset, see RFC 2136 section 2.5.2.
func (u *Msg) RemoveRRset(rr []RR) {
if u.Ns == nil {
u.Ns = make([]RR, 0, len(rr))
}
for _, r := range rr {
h := r.Header()
u.Ns = append(u.Ns, &ANY{Hdr: RR_Header{Name: h.Name, Ttl: 0, Rrtype: h.Rrtype, Class: ClassANY}})
2011-08-22 13:43:52 +00:00
}
2011-08-22 13:35:52 +00:00
}
// RemoveName creates a dynamic update packet that deletes all RRsets of a name, see RFC 2136 section 2.5.3
func (u *Msg) RemoveName(rr []RR) {
if u.Ns == nil {
u.Ns = make([]RR, 0, len(rr))
}
for _, r := range rr {
u.Ns = append(u.Ns, &ANY{Hdr: RR_Header{Name: r.Header().Name, Ttl: 0, Rrtype: TypeANY, Class: ClassANY}})
2011-08-22 13:43:52 +00:00
}
}
// Remove creates a dynamic update packet deletes RR from a RRSset, see RFC 2136 section 2.5.4
func (u *Msg) Remove(rr []RR) {
if u.Ns == nil {
u.Ns = make([]RR, 0, len(rr))
}
for _, r := range rr {
h := r.Header()
h.Class = ClassNONE
h.Ttl = 0
u.Ns = append(u.Ns, r)
2011-08-22 13:43:52 +00:00
}
2011-08-22 13:35:52 +00:00
}