diff options
Diffstat (limited to 'src/modules/ident/libkviident.cpp')
-rw-r--r-- | src/modules/ident/libkviident.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/modules/ident/libkviident.cpp b/src/modules/ident/libkviident.cpp index 3c260678..d9d3a9bf 100644 --- a/src/modules/ident/libkviident.cpp +++ b/src/modules/ident/libkviident.cpp @@ -47,7 +47,7 @@ extern KVIRC_API int g_iIdentDaemonRunningUsers; void startIdentService() { -// debug("Stargin"); +// tqDebug("Stargin"); if(!g_pIdentDaemon)g_pIdentDaemon = new KviIdentDaemon(); if(!g_pIdentDaemon->isRunning())g_pIdentDaemon->start(); while(g_pIdentDaemon->isStartingUp()) @@ -58,15 +58,15 @@ void startIdentService() usleep(100); #endif } -// debug("Service started"); +// tqDebug("Service started"); } void stopIdentService() { -// debug("Stopping"); +// tqDebug("Stopping"); if(g_pIdentDaemon)delete g_pIdentDaemon; g_pIdentDaemon = 0; -// debug("Stopped"); +// tqDebug("Stopped"); } KviIdentSentinel::KviIdentSentinel() @@ -149,7 +149,7 @@ KviIdentRequest::~KviIdentRequest() KviIdentDaemon::KviIdentDaemon() : KviSensitiveThread() { -// debug("Thread constructor"); +// tqDebug("Thread constructor"); m_szUser = KVI_OPTION_STRING(KviOption_stringIdentdUser); if(m_szUser.isEmpty())m_szUser = "kvirc"; m_uPort = KVI_OPTION_UINT(KviOption_uintIdentdPort); @@ -159,17 +159,17 @@ KviIdentDaemon::KviIdentDaemon() m_bEnableIpV6 = false; #endif m_bIpV6ContainsIpV4 = KVI_OPTION_BOOL(KviOption_boolIdentdIpV6ContainsIpV4); -// debug("Thread constructor done"); +// tqDebug("Thread constructor done"); } KviIdentDaemon::~KviIdentDaemon() { -// debug("Thread destructor"); +// tqDebug("Thread destructor"); terminate(); g_iIdentDaemonRunningUsers = 0; g_pIdentDaemon = 0; -// debug("Destructor gone"); +// tqDebug("Destructor gone"); } void KviIdentDaemon::postMessage(const char * message,KviIdentRequest * r,const char * szAux) @@ -193,7 +193,7 @@ void KviIdentDaemon::postMessage(const char * message,KviIdentRequest * r,const void KviIdentDaemon::run() { -// debug("RUN STARTED"); +// tqDebug("RUN STARTED"); m_sock = KVI_INVALID_SOCKET; m_sock6 = KVI_INVALID_SOCKET; bool bEventPosted = false; @@ -479,7 +479,7 @@ ipv6_failure: } } else { - // debug("Data is : (%s)",r->m_szData.ptr()); + // tqDebug("Data is : (%s)",r->m_szData.ptr()); if(r->m_szData.len() > 1024) { // request too long...kill it @@ -527,7 +527,7 @@ exit_thread: delete m_pRequestList; m_pRequestList = 0; -// debug("RUN EXITING"); +// tqDebug("RUN EXITING"); } |