# File lib/whois/server/adapters/base.rb, line 50
        def ==(other)
          (self.equal?(other)) ||
          (
            self.type == other.type &&
            self.allocation == other.allocation &&
            self.host == other.host &&
            self.options == other.options
          )
        end