commit | fa24379aeb9237dc550176d25021fd11eee94a9b | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Wed May 04 09:19:13 2022 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Thu May 05 09:23:35 2022 +0200 |
tree | 88c0b5f6f8dcdd0010edc6147abc7fa841560735 | |
parent | de1803f8a94357274ce29fde1ee16224122948bd [diff] |
MINOR: conn-stream: Add mask from flags set by endpoint or app layer In flags set on the endpoints, some are set by endpoints itself and some are set by the app layer. To help flags manipulations, 2 masks have been added. The first one, CS_EP_ENDP_MASK, for all flags that an endpoint may set. The other one, CS_EP_APP_MASK, for flags that the app layer may set. This patch is mandatory for the next commit.