Skip to content

Commit

Permalink
Cleanup IsRRSet (#1502)
Browse files Browse the repository at this point in the history
This is a very minor change that simply neatens up this function.
  • Loading branch information
tmthrgd committed Nov 6, 2023
1 parent 02e9e72 commit 9657fe6
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -291,26 +291,19 @@ func IsFqdn(s string) bool {
return (len(s)-i)%2 != 0
}

// IsRRset checks if a set of RRs is a valid RRset as defined by RFC 2181.
// This means the RRs need to have the same type, name, and class. Returns true
// if the RR set is valid, otherwise false.
// IsRRset reports whether a set of RRs is a valid RRset as defined by RFC 2181.
// This means the RRs need to have the same type, name, and class.
func IsRRset(rrset []RR) bool {
if len(rrset) == 0 {
return false
}
if len(rrset) == 1 {
return true
}
rrHeader := rrset[0].Header()
rrType := rrHeader.Rrtype
rrClass := rrHeader.Class
rrName := rrHeader.Name

baseH := rrset[0].Header()
for _, rr := range rrset[1:] {
curRRHeader := rr.Header()
if curRRHeader.Rrtype != rrType || curRRHeader.Class != rrClass || curRRHeader.Name != rrName {
curH := rr.Header()
if curH.Rrtype != baseH.Rrtype || curH.Class != baseH.Class || curH.Name != baseH.Name {
// Mismatch between the records, so this is not a valid rrset for
//signing/verifying
// signing/verifying
return false
}
}
Expand Down

0 comments on commit 9657fe6

Please sign in to comment.