commit | c493c9cb081b8c9e1a12b1af997cde530f046fbe | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Jun 03 14:18:22 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon Jun 03 14:18:22 2019 +0200 |
tree | c040fbeb358f075c21cd97c013bab12230cbb81c | |
parent | fbdf90a6f9333fa991687caafbd5fe9e8bb701cb [diff] |
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.