commit | 2b778484189735d22c45034b22de4665a745c49d | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon May 06 15:00:22 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue May 07 11:08:02 2019 +0200 |
tree | ecf7ef85f23a672ad540ccde8d2a89c11588e438 | |
parent | aab1a6097790774a4a36cd38fcac84128e52697b [diff] |
MEDIUM: mux-h2: discard contents that are to be sent after a shutdown In h2_snd_buf() we discard any possible buffer contents requested to be sent after a close or an error. But in practice we can extend this to any case where the stream is locally half-closed since it means we will never be able to send these data anymore. For now it must not change anything, but it will be used by subsequent patches to discard lone a HTX EOM block arriving after the trailers block.