of queries. It was tested to work.
- Log ip address when http session recv fails, eg. due to tls fail.
- Fix to set the tcp handler event toggle flag back to default when
the handler structure is reused.
+ - Clean the fix for out of order TCP processing limits on number
+ of queries. It was tested to work.
16 October 2020: Wouter
- Fix that the out of order TCP processing does not limit the
/** number of queued TCP connections for listen() */
#define TCP_BACKLOG 256
-/** number of simultaneous requests a client can have */
-/* #define TCP_MAX_REQ_SIMULTANEOUS 32 */
-
#ifndef THREADS_DISABLED
/** lock on the counter of stream buffer memory */
static lock_basic_type stream_wait_count_lock;
if(!req->cp->tcp_is_reading)
wr = 1;
- if(/*req->num_open_req + req->num_done_req < TCP_MAX_REQ_SIMULTANEOUS &&*/
- !req->read_is_closed)
+ if(!req->read_is_closed)
rd = 1;
if(wr) {