diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-11-27 08:59:57 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-11-27 08:59:57 -0500 |
commit | 4fccf2716d742dfff33d868f04e940075c07d93a (patch) | |
tree | 862e39ea78b1da085b53301d6d7b3262d6b8b682 /src | |
parent | c82804b6264fc55b6cc5c20fc0232fea23ea3f97 (diff) |
In HTTP protocol C code, increase listening socket backlog to maximum
Diffstat (limited to 'src')
-rw-r--r-- | src/c/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/http.c b/src/c/http.c index aa045d7a..48a042dc 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -19,7 +19,7 @@ extern uw_app uw_application; -int uw_backlog = 10; +int uw_backlog = SOMAXCONN; static char *get_header(void *data, const char *h) { char *s = data; |