Browse Source

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

dynamic-accesslists
erdgeist 14 years ago
parent
commit
a75c824187
  1. 4
      opentracker.c

4
opentracker.c

@ -185,6 +185,10 @@ static void handle_read( const int64 sock, struct ot_workstruct *ws ) { @@ -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;
}
}

Loading…
Cancel
Save