summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2018-11-15 13:29:58 (GMT)
committerKevin Smith <git@kismith.co.uk>2018-11-15 13:30:24 (GMT)
commit279c48e1a0a99cf12a8d06b256a558888e994ccf (patch)
treeb279742c9d65ac6350174fe11fe99a62c0ad69b4 /Swiften/Network/HostAddress.h
parent851cc362832f3332ea5485360fc11068f1f580d1 (diff)
downloadswift-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.h6
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,5 +1,5 @@
/*
- * Copyright (c) 2010-2016 Isode Limited.
+ * Copyright (c) 2010-2018 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
@@ -27,6 +27,10 @@ namespace Swift {
return address_ == o.address_;
}
+ bool operator<(const HostAddress& o) const {
+ return address_ < o.address_;
+ }
+
bool isValid() const;
bool isLocalhost() const;