number of outstanding queries over a connection.
+16 October 2020: Wouter
+ - Fix that the out of order TCP processing does not limit the
+ number of outstanding queries over a connection.
+
15 October 2020: George
- Fix that if there are reply callbacks for the given rcode, those
are called per reply and a new message created if that was modified
#define TCP_BACKLOG 256
/** number of simultaneous requests a client can have */
-#define TCP_MAX_REQ_SIMULTANEOUS 32
+/* #define TCP_MAX_REQ_SIMULTANEOUS 32 */
#ifndef THREADS_DISABLED
/** lock on the counter of stream buffer memory */
if(!req->cp->tcp_is_reading)
wr = 1;
- if(req->num_open_req + req->num_done_req < TCP_MAX_REQ_SIMULTANEOUS &&
+ if(/*req->num_open_req + req->num_done_req < TCP_MAX_REQ_SIMULTANEOUS &&*/
!req->read_is_closed)
rd = 1;