commit | 35c4dd0005a210597c2b96317c6f69e3fed4b171 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Jan 17 16:25:29 2023 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Jan 17 16:25:29 2023 +0100 |
tree | 410820c8d4fb1698676a1a9146a551b62df5e076 | |
parent | 40725a4eb0beadcdaa3c60b6f8c8fe20ab53abc3 [diff] |
CLEANUP: stconn: always use se_fl_set_error() to set the pending error In mux-h2 and mux-quic we still had two places manually setting SE_FL_ERR_PENDING or SE_FL_ERROR depending on the EOS state, instead of using se_fl_set_error() which takes care of the condition. Better use the specialized function for this, it will allow to centralize the conditions. Note that this will be needed to fix a bug.