From 5246737b1630e2b39eecf2c2b78094e9ca4ba372 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 8 May 2007 21:41:57 +0000 Subject: Decraq git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6919 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_xmlsocket.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'src/modules') diff --git a/src/modules/m_xmlsocket.cpp b/src/modules/m_xmlsocket.cpp index 84f79e270..09ffe6ca9 100644 --- a/src/modules/m_xmlsocket.cpp +++ b/src/modules/m_xmlsocket.cpp @@ -16,27 +16,20 @@ #include "users.h" #include "channels.h" #include "modules.h" - #include "hashcomp.h" #include "inspircd.h" /* $ModDesc: Provides XMLSocket support for clients */ - class ModuleXMLSocket : public Module { - ConfigReader* Conf; - std::vector listenports; - int clientactive; public: - InspIRCd* PublicInstance; - ModuleXMLSocket(InspIRCd* Me) - : Module::Module(Me), PublicInstance(Me) + : Module::Module(Me) { OnRehash(NULL,""); } @@ -52,7 +45,6 @@ class ModuleXMLSocket : public Module } listenports.clear(); - clientactive = 0; for (int i = 0; i < Conf->Enumerate("bind"); i++) { @@ -65,7 +57,6 @@ class ModuleXMLSocket : public Module long portno = -1; while ((portno = portrange.GetToken())) { - clientactive++; try { if (ServerInstance->Config->AddIOHook(portno, this)) -- cgit v1.2.3