class HTTPClient::Site

def ==(rhs)

Returns true is scheme, host and port are '=='
def ==(rhs)
  (@scheme == rhs.scheme) and (@host == rhs.host) and (@port == rhs.port)
end