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 | cfdef46268b002d09a124dca9fce7d6a8c33d86e (patch) | |
tree | 862e39ea78b1da085b53301d6d7b3262d6b8b682 /src/c/http.c | |
parent | 9e8b860187a8ce183ef51a4ef0261dbe7b2cc4cc (diff) |
In HTTP protocol C code, increase listening socket backlog to maximum
Diffstat (limited to 'src/c/http.c')
-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; |