From b378309829e8e4e823f80aec530f358a48570de4 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 17 May 2005 02:51:23 +0000 Subject: Changed from SOMAXCONN to 32 git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1410 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/connection.cpp') 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; } -- cgit v1.2.3