diff options
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