X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0f19bfa8a0c452238245c405e278a630a6c2ac15..358f6f19f4a1a62e7eec6f83c99ad98a2e3e38ee:/include/user_stat.h?ds=sidebyside diff --git a/include/user_stat.h b/include/user_stat.h index 126c20f4..fd0e79a0 100644 --- a/include/user_stat.h +++ b/include/user_stat.h @@ -74,6 +74,22 @@ struct IP_DIR_PAIR return false; } //------------------------ + bool operator!=(const IP_DIR_PAIR & rvalue) const + { + if (ip != rvalue.ip) + return true; + + #ifdef TRAFF_STAT_WITH_PORTS + if (port != rvalue.port) + return true; + #endif + + if (dir != rvalue.dir) + return true; + + return false; + } + //------------------------ uint32_t ip; int dir; #ifdef TRAFF_STAT_WITH_PORTS