# File lib/dnsruby/message/message.rb, line 220 def ==(other) other.kind_of?(Message) && @header == other.header && @question[0] == other.question[0] && @answer == other.answer && @authority == other.authority && @additional == other.additional end