MINOR: quic: remove unneeded notification of txbuf room
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Fri, 27 Sep 2024 13:31:21 +0000 (15:31 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 1 Oct 2024 14:19:25 +0000 (16:19 +0200)
commit4859d8e71d9ccefcb64a474871c9a537872af646
treef47c27f200953b9fc9c8efc4c61bf727e89976e5
parent12782da020d2f31d84659ad5964f9618ea13ca11
MINOR: quic: remove unneeded notification of txbuf room

When a stream buffer is freed, qc_stream_desc notify MUX. This is useful
if MUX is waiting for Tx buffer allocation.

Remove this notification in qc_stream_desc(). This is because the
function is called when all stream data have been acknowledged and thus
notified. This function can also be called with some data
unacknowledged, but in this case this is only true just before
connection closure. As such, it is useful to notify the MUX in this
condition.
src/quic_stream.c