bool ConnectionKey::partialEqual()

in squangle/base/ConnectionKey.cpp [49:53]


bool ConnectionKey::partialEqual(const ConnectionKey& rhs) const {
  return partial_hash == rhs.partial_hash && host == rhs.host &&
      port == rhs.port && user == rhs.user && password == rhs.password &&
      special_tag == rhs.special_tag;
}