X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Flistensocket.cpp;h=c1339fb3d6f382741150b8ca06c562c63b6d2320;hb=cf728bd8a3de0942c2294ca5b49745092565d87c;hp=cb4bfd2db4a01bd06fa6f177bce17e4b8e4e2ef3;hpb=30fec322809582f91be70cc1bb16c9678180db76;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/listensocket.cpp b/src/listensocket.cpp index cb4bfd2db..c1339fb3d 100644 --- a/src/listensocket.cpp +++ b/src/listensocket.cpp @@ -19,8 +19,6 @@ #include "inspircd.h" -#include "socket.h" -#include "socketengine.h" #ifndef _WIN32 #include @@ -114,7 +112,7 @@ void ListenSocket::AcceptInternal() ServerInstance->Logs->Log("SOCKET", LOG_DEBUG, "HandleEvent for Listensocket %s nfd=%d", bind_desc.c_str(), incomingSockfd); if (incomingSockfd < 0) { - ServerInstance->stats->statsRefused++; + ServerInstance->stats.Refused++; return; } @@ -170,11 +168,11 @@ void ListenSocket::AcceptInternal() } if (res == MOD_RES_ALLOW) { - ServerInstance->stats->statsAccept++; + ServerInstance->stats.Accept++; } else { - ServerInstance->stats->statsRefused++; + ServerInstance->stats.Refused++; ServerInstance->Logs->Log("SOCKET", LOG_DEFAULT, "Refusing connection on %s - %s", bind_desc.c_str(), res == MOD_RES_DENY ? "Connection refused by module" : "Module for this port not found"); SocketEngine::Close(incomingSockfd);