# File lib/Dnsruby/message.rb, line 129 def ==(other) ret = false if (other.kind_of?Message) ret = @header == other.header && @question == other.question && @answer == other.answer && @authority == other.authority && @additional == other.additional end return ret end