commit | f061e422f726c5c387bb8199117d12b7474f5d25 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Fri Dec 07 14:51:20 2018 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Fri Dec 07 14:57:58 2018 +0100 |
tree | 1a8fb65ef28f6c5ca8954b3a5894b62fa56711a1 | |
parent | 5f50f5e606763a70dd257e5c932d8ac0fe2e160a [diff] |
BUG/MINOR: stream-int: Process read0 even if no data was received in si_cs_recv The flag CS_FL_EOS can be set while no data was received. So the flas CS_FL_RCV_MORE is not set. In this case, the read0 was never processed by the stream interface. To be sure to process it, the test on CS_FL_RCV_MORE has been moved after the one on CS_FL_EOS.