summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-01 15:19:59 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-01 15:19:59 +0000
commit5c5f62bdcc07c5cd00bd189c6e9dfe942d0f9431 (patch)
treeef6eb492efbeb3d10b02ac70450956cf12adfe63 /src
parent5a13b1834b3dfdeeeabb4569af5def7baa7c6248 (diff)
Comment a message out that people regularly attempt to interpret
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8453 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspsocket.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp
index d05418472..c5b6f1838 100644
--- a/src/inspsocket.cpp
+++ b/src/inspsocket.cpp
@@ -151,7 +151,10 @@ void BufferedSocket::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());
+ ; // do nothing. I'm a little sick of people trying to interpret this message as a result of why their incorrect setups don't work.
+ }
}
/* Most irc servers require you to specify the ip you want to bind to.