]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-readpost-timeout.patch
- fix md5, it was okay before
[packages/lighttpd.git] / lighttpd-readpost-timeout.patch
1 --- lighttpd-1.3.7/src/server.c~        2004-12-04 17:46:35.000000000 +0200
2 +++ lighttpd-1.3.7/src/server.c 2005-01-14 12:57:50.000000000 +0200
3 @@ -795,7 +795,8 @@
4                                         
5                                         con = conns->ptr[ndx];
6                                                 
7 -                                       if (con->state == CON_STATE_READ) {
8 +                                       if (con->state == CON_STATE_READ || con->state == CON_STATE_READ_POST) {
9 +
10                                                 if (con->request_count == 1) {
11                                                         if (srv->cur_ts - con->read_idle_ts > con->conf.max_read_idle) {
12                                                                 /* time - out */
This page took 0.021615 seconds and 3 git commands to generate.