# File lib/Dnsruby/resource/resource.rb, line 292 def sameRRset(rec) if (@klass != rec.klass || @name.downcase != rec.name.downcase) return false end if (rec.type == Types.RRSIG) && (@type == Types.RRSIG) return rec.type_covered == self.type_covered end [rec, self].each { |rr| if (rr.type == Types::RRSIG) return ((@type == rr.type_covered) || (rec.type == rr.type_covered)) end } return (@type == rec.type) end