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/HostAddress.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/HostAddress.h')
| -rw-r--r-- | Swiften/Network/HostAddress.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Swiften/Network/HostAddress.h b/Swiften/Network/HostAddress.h index e4ddffb..7a22cf4 100644 --- a/Swiften/Network/HostAddress.h +++ b/Swiften/Network/HostAddress.h @@ -1,7 +1,7 @@ /* - * Copyright (c) 2010-2016 Isode Limited. + * Copyright (c) 2010-2018 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once @@ -25,10 +25,14 @@ namespace Swift { bool operator==(const HostAddress& o) const { return address_ == o.address_; } + bool operator<(const HostAddress& o) const { + return address_ < o.address_; + } + bool isValid() const; bool isLocalhost() const; static boost::optional<HostAddress> fromString(const std::string& addressString); |
Swift