X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fplaintcp.c;h=b898e37a05b47d3ef6efd3ccff1934ff5c29f953;hb=d43312387d7f7841101e7a600c2072dd076643aa;hp=321be41d35380015a9ccd024435a42bff6726876;hpb=be078ac9feafbf0eb7547ea14bb2e73936caa60c;p=ashd.git 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); }