]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MEDIUM: mux-h1: don't use CS_FL_REOS anymore
authorWilly Tarreau <w@1wt.eu>
Mon, 3 Jun 2019 12:18:22 +0000 (14:18 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 3 Jun 2019 12:18:22 +0000 (14:18 +0200)
commitc493c9cb081b8c9e1a12b1af997cde530f046fbe
treec040fbeb358f075c21cd97c013bab12230cbb81c
parentfbdf90a6f9333fa991687caafbd5fe9e8bb701cb
MEDIUM: mux-h1: don't use CS_FL_REOS anymore

This flag was already removed from other muxes and from the upper layers,
because it was misused. It indicates to the mux that the end of a stream
was already seen and is pending after existing data, but this should not
be on the conn_stream but internal to the mux.

This patch creates a new H1S flag H1S_F_REOS to replace it and uses it to
replace the last uses of CS_FL_REOS.
src/mux_h1.c