diff options
| author | 2007-11-01 15:21:38 +0000 | |
|---|---|---|
| committer | 2007-11-01 15:21:38 +0000 | |
| commit | 85aeb6514abac0a508417ed624dfb671d26283b8 (patch) | |
| tree | c5fcfcdde4a75b9ca516ce090a7e7554224ad58d /src/inspsocket.cpp | |
| parent | Add dz to stable too (diff) | |
same as 8453, and now i'm back to bed.
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8454 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspsocket.cpp')
| -rw-r--r-- | src/inspsocket.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index 616352f74..1705c8058 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -151,7 +151,10 @@ void InspSocket::SetQueues(int nfd) int sendbuf = 32768; int recvbuf = 32768; if(setsockopt(nfd,SOL_SOCKET,SO_SNDBUF,(const char *)&sendbuf,sizeof(sendbuf)) || setsockopt(nfd,SOL_SOCKET,SO_RCVBUF,(const char *)&recvbuf,sizeof(sendbuf))) - this->Instance->Log(DEFAULT, "Could not increase SO_SNDBUF/SO_RCVBUF for socket %u", GetFd()); + { + //this->Instance->Log(DEFAULT, "Could not increase SO_SNDBUF/SO_RCVBUF for socket %u", GetFd()); + // per 1.2 change, commenting this out .. sick of people trying to interpret this + } } /* Most irc servers require you to specify the ip you want to bind to. |
