commit | 285f7616ee1b038aa1ec40b9568a954e9a61d1af | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Mon Dec 12 08:28:55 2022 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Mon Jan 09 18:41:08 2023 +0100 |
tree | 310fabebe5d9d9f0d231ffe924b5002eb60cc96e | |
parent | b96f2aa38032e806051b1b41e61eb132c930df8e [diff] |
MEDIUM: channel: Use CF_READ_EVENT instead of CF_READ_PARTIAL CF_READ_PARTIAL flag is now merged with CF_READ_EVENT. It means CF_READ_EVENT is set when a read0 is received (formely CF_READ_NULL) or when data are received (formely CF_READ_ACTIVITY). There is nothing special here, except conditions to wake the stream up in sc_notify(). Indeed, the test was a bit changed to reflect recent change. read0 event is now formalized by (CF_READ_EVENT + CF_SHUTR).