]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MEDIUM: stream-int: automatically call si_cs_recv_cb() if the cs has data on wake()
authorWilly Tarreau <w@1wt.eu>
Mon, 26 Feb 2018 19:08:13 +0000 (20:08 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 20 Jul 2018 17:21:43 +0000 (19:21 +0200)
If the cs has data pending or shutdown and the input channel is still
waiting for reads, let's simply call the recv() function from the wake()
callback. This will allow the lower layers to simply wake the upper one
up without having to consider the recv() nor anything else.

src/stream_interface.c

index a0c73bca2f3222118ca395e782f665cdfd1c8792..655c882e656b0c99e58799016cab615808be610c 100644 (file)
@@ -581,6 +581,14 @@ static int si_cs_wake_cb(struct conn_stream *cs)
        struct channel *ic = si_ic(si);
        struct channel *oc = si_oc(si);
 
+       /* if the CS's input buffer already has data available, let's try to
+        * receive now. The new muxes do this. The CS_FL_REOS is another cause
+        * for recv() (received only an empty response).
+        */
+       if (!(cs->flags & CS_FL_EOS) &&
+           (cs->flags & (CS_FL_DATA_RD_ENA|CS_FL_REOS|CS_FL_RCV_MORE)) > CS_FL_DATA_RD_ENA)
+               si_cs_recv_cb(cs);
+
        /* First step, report to the stream-int what was detected at the
         * connection layer : errors and connection establishment.
         */