diff options
Diffstat (limited to 'src/modules/m_spanningtree')
-rw-r--r-- | src/modules/m_spanningtree/handshaketimer.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/modules/m_spanningtree/handshaketimer.cpp b/src/modules/m_spanningtree/handshaketimer.cpp index 150c9eecd..e0c471af7 100644 --- a/src/modules/m_spanningtree/handshaketimer.cpp +++ b/src/modules/m_spanningtree/handshaketimer.cpp @@ -26,13 +26,10 @@ HandshakeTimer::HandshakeTimer(InspIRCd* Inst, TreeSocket* s, Link* l, SpanningT void HandshakeTimer::Tick(time_t TIME) { - Instance->Log(DEBUG,"Tick handshake timer."); if (Instance->SE->GetRef(thefd) == sock) { - Instance->Log(DEBUG,"Socket still here"); if (sock->GetHook() && InspSocketHSCompleteRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send()) { - Instance->Log(DEBUG,"request complete"); InspSocketAttachCertRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send(); sock->SendCapabilities(); if (sock->GetLinkState() == CONNECTING) @@ -42,7 +39,6 @@ void HandshakeTimer::Tick(time_t TIME) } else { - Instance->Log(DEBUG,"Request not yet complete"); Instance->Timers->AddTimer(new HandshakeTimer(Instance, sock, lnk, Utils)); } } |