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