summaryrefslogtreecommitdiff
path: root/src/inspsocket.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-02-06 20:22:06 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-02-06 20:22:06 +0000
commit2cd299419273914624dcc64afa7928577fe52bb3 (patch)
tree7e4f1329bc4741859e021ec6cf43854428ffec7c /src/inspsocket.cpp
parentf1d20d0cd208be18fe577ca4d5434be3693fb6a5 (diff)
Remove debug output that was only useful to me
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6530 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspsocket.cpp')
-rw-r--r--src/inspsocket.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp
index 492cafdd9..4ee51db17 100644
--- a/src/inspsocket.cpp
+++ b/src/inspsocket.cpp
@@ -595,7 +595,6 @@ bool InspSocket::Poll()
break;
case I_LISTENING:
{
- Instance->Log(DEBUG,"InspSocket listen event");
sockaddr* client = new sockaddr[2];
length = sizeof (sockaddr_in);
std::string recvip;
@@ -604,9 +603,6 @@ bool InspSocket::Poll()
length = sizeof(sockaddr_in6);
#endif
incoming = accept (this->fd, client, &length);
-
- Instance->Log(DEBUG,"Accepted socket, sockaddr length %d fd %d", length, incoming);
-
#ifdef IPV6
if ((!*this->host) || strchr(this->host, ':'))
{
@@ -620,7 +616,6 @@ bool InspSocket::Poll()
#else
recvip = inet_ntoa(((sockaddr_in*)client)->sin_addr);
#endif
- Instance->Log(DEBUG,"Call OnIncomingConnection, recvip=%s", recvip.c_str());
this->OnIncomingConnection(incoming, (char*)recvip.c_str());
if (this->IsIOHooked)