summaryrefslogtreecommitdiff
path: root/src/connection.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-17 02:51:23 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-17 02:51:23 +0000
commitb378309829e8e4e823f80aec530f358a48570de4 (patch)
tree0b9e87af8c1b278f702b88500ac0aacb4a2e6a0b /src/connection.cpp
parent91b07b8c367faef73225074102fe13616789440a (diff)
Changed from SOMAXCONN to 32
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1410 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/connection.cpp')
-rw-r--r--src/connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.cpp b/src/connection.cpp
index 26d011914..c902c2d22 100644
--- a/src/connection.cpp
+++ b/src/connection.cpp
@@ -133,7 +133,7 @@ bool connection::CreateListener(char* newhost, int p)
this->port = p;
- listen(this->fd,SOMAXCONN);
+ listen(this->fd,32);
return true;
}