Dolda2000 GitWeb
/
ashd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9158f83
)
htparser: Increased listen backlog a lot.
author
Fredrik Tolf
<fredrik@seatribe.se>
Thu, 17 Mar 2011 20:16:11 +0000
(21:16 +0100)
committer
Fredrik Tolf
<fredrik@seatribe.se>
Thu, 17 Mar 2011 20:16:11 +0000
(21:16 +0100)
src/plaintcp.c
patch
|
blob
|
blame
|
history
diff --git
a/src/plaintcp.c
b/src/plaintcp.c
index
321be41
..
b898e37
100644
(file)
--- a/
src/plaintcp.c
+++ b/
src/plaintcp.c
@@
-65,7
+65,7
@@
int listensock4(int port)
close(fd);
return(-1);
}
- if(listen(fd, 1
6
) < 0) {
+ if(listen(fd, 1
28
) < 0) {
close(fd);
return(-1);
}
@@
-90,7
+90,7
@@
int listensock6(int port)
close(fd);
return(-1);
}
- if(listen(fd, 1
6
) < 0) {
+ if(listen(fd, 1
28
) < 0) {
close(fd);
return(-1);
}