1
0
mirror of git://erdgeist.org/opentracker synced 2025-01-27 07:06:45 +00:00

the keep-alive loop must not run, if no keep alive is configured or requested for connection

This commit is contained in:
erdgeist 2010-08-09 14:20:02 +00:00
parent 426c5f30c2
commit a75c824187

View File

@ -185,6 +185,10 @@ static void handle_read( const int64 sock, struct ot_workstruct *ws ) {
ws->request = array_start( &cookie->request );
ws->request_size = array_bytes( &cookie->request );
http_handle_request( sock, ws );
#ifdef WANT_KEEPALIVE
if( !ws->keep_alive )
#endif
return;
}
}