diff options
| author | Kevin Smith <git@kismith.co.uk> | 2018-11-15 13:29:58 (GMT) |
|---|---|---|
| committer | Kevin Smith <git@kismith.co.uk> | 2018-11-15 13:30:24 (GMT) |
| commit | 279c48e1a0a99cf12a8d06b256a558888e994ccf (patch) | |
| tree | b279742c9d65ac6350174fe11fe99a62c0ad69b4 /Swiften/Network/HostAddressPort.h | |
| parent | 851cc362832f3332ea5485360fc11068f1f580d1 (diff) | |
| download | swift-279c48e1a0a99cf12a8d06b256a558888e994ccf.zip swift-279c48e1a0a99cf12a8d06b256a558888e994ccf.tar.bz2 | |
Allow HostAddress(Port) to be used in a map
Test-Information:
Added unit tests
Change-Id: I405d9e9c2b64c4953ca0cec8f6481b695c15e30f
Diffstat (limited to 'Swiften/Network/HostAddressPort.h')
| -rw-r--r-- | Swiften/Network/HostAddressPort.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Swiften/Network/HostAddressPort.h b/Swiften/Network/HostAddressPort.h index 14c7c66..759af01 100644 --- a/Swiften/Network/HostAddressPort.h +++ b/Swiften/Network/HostAddressPort.h @@ -23,18 +23,25 @@ namespace Swift { unsigned short getPort() const { return port_; } bool operator==(const HostAddressPort& o) const { return address_ == o.address_ && port_ == o.port_; } + bool operator<(const HostAddressPort& o) const { + if (address_ < o.address_) { + return true; + } + return address_ == o.address_ && port_ < o.port_; + } + bool isValid() const { return address_.isValid() && port_ > 0; } std::string toString() const; private: HostAddress address_; unsigned short port_; |
Swift