From dc203f9f201e5a49677d3982f0b6c7d8610cc484 Mon Sep 17 00:00:00 2001 From: Daniel De Graaf Date: Mon, 26 Apr 2010 19:08:39 -0500 Subject: Define comparator for irc::sockets::sockaddrs This only compares IP/port, which ignores IPv6 flow information and scope ID, which aren't important in testing for equality. --- include/socket.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'include/socket.h') diff --git a/include/socket.h b/include/socket.h index 91a10d1f9..b09581cd6 100644 --- a/include/socket.h +++ b/include/socket.h @@ -44,7 +44,8 @@ namespace irc */ namespace sockets { - union CoreExport sockaddrs { + union CoreExport sockaddrs + { struct sockaddr sa; struct sockaddr_in in4; struct sockaddr_in6 in6; @@ -56,9 +57,11 @@ namespace irc std::string addr() const; /** Return human-readable IP/port pair */ std::string str() const; + bool operator==(const sockaddrs& other) const; + inline bool operator!=(const sockaddrs& other) const { return !(*this == other); } }; - struct cidr_mask + struct CoreExport cidr_mask { /** Type, AF_INET or AF_INET6 */ unsigned char type; -- cgit v1.2.3