mumble/src/ServerAddress.cpp
2019-01-25 04:56:19 +01:00

43 lines
1.0 KiB
C++

// Copyright 2005-2019 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
#include "murmur_pch.h"
#include "ServerAddress.h"
ServerAddress::ServerAddress()
: port(0) {}
ServerAddress::ServerAddress(HostAddress host_, unsigned short port_)
: host(host_)
, port(port_) {}
bool ServerAddress::isValid() const {
return host.isValid() && port != 0;
}
bool operator==(const ServerAddress &lhs, const ServerAddress &rhs) {
return lhs.host == rhs.host && lhs.port == rhs.port;
}
bool operator!=(const ServerAddress &lhs, const ServerAddress &rhs) {
return !operator==(lhs, rhs);
}
bool operator<(const ServerAddress &lhs, const ServerAddress &rhs) {
if (lhs.host < rhs.host) {
return true;
} else if (lhs.host == rhs.host) {
if (lhs.port < rhs.port) {
return true;
}
}
return false;
}
uint qHash(const ServerAddress &key) {
return qHash(key.host) ^ uint(key.port);
}