X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=src%2Fplaintcp.c;h=b898e37a05b47d3ef6efd3ccff1934ff5c29f953;hp=321be41d35380015a9ccd024435a42bff6726876;hb=4ab547c31eed8bbe9538587850a1b90d4138d609;hpb=9158f8309871eb9bf44132f7da6d28100dea8ee2 diff --git a/src/plaintcp.c b/src/plaintcp.c index 321be41..b898e37 100644 --- a/src/plaintcp.c +++ b/src/plaintcp.c @@ -65,7 +65,7 @@ int listensock4(int port) close(fd); return(-1); } - if(listen(fd, 16) < 0) { + if(listen(fd, 128) < 0) { close(fd); return(-1); } @@ -90,7 +90,7 @@ int listensock6(int port) close(fd); return(-1); } - if(listen(fd, 16) < 0) { + if(listen(fd, 128) < 0) { close(fd); return(-1); }