From f3976e3c06ef57671e823953a8cc27c30547da6d Mon Sep 17 00:00:00 2001 From: Determinant Date: Fri, 6 Jul 2018 18:46:59 -0400 Subject: ... --- include/salticidae/netaddr.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/salticidae/netaddr.h') diff --git a/include/salticidae/netaddr.h b/include/salticidae/netaddr.h index 1b53dff..eabb5da 100644 --- a/include/salticidae/netaddr.h +++ b/include/salticidae/netaddr.h @@ -84,7 +84,11 @@ struct NetAddr { bool operator==(const NetAddr &other) const { return ip == other.ip && port == other.port; } - + + bool operator!=(const NetAddr &other) const { + return ip != other.ip || port != other.port; + } + operator std::string() const { struct in_addr in; in.s_addr = ip; -- cgit v1.2.3