[PATCH 0/1] Update ssl_fc_curve/ssl_bc_curve sample fetch

2023-12-19 Thread Mariam John
Update ssl_fc_curve/ssl_fc_curve to use `SSL_get0_group_name` function (available from the OpenSSL v3.2 release onwards) to get the curve name. For OpenSSL versions >=3.0 and <3.2, we will continue to use `SSL_get_negotiated_group` to get the curve name. Mariam John (1): BUG/MINOR: ssl:

[PATCH 1/1] BUG/MINOR: ssl: Update ssl_fc_curve/ssl_bc_curve to use SSL_get0_group_name

2023-12-19 Thread Mariam John
The function `smp_fetch_ssl_fc_ec` gets the curve name used during key exchange. It currently uses the `SSL_get_negotiated_group`, available since OpenSSLv3.0 to get the nid and derive the short name of the curve from the nid. In OpenSSLv3.2, a new function, `SSL_get0_group_name` was added that

[ANNOUNCE] haproxy-2.0.34

2023-12-19 Thread Christopher Faulet
Hi, HAProxy 2.0.34 was released on 2023/12/18. It added 25 new commits after version 2.0.33. This release flushes the pipe of pending fixes: On H2 side, when a congested H2 connection is shut done, we now take care to wait to send the final empty DATA frame with the ES flag, if necessary,

[ANNOUNCE] haproxy-2.2.32

2023-12-19 Thread Christopher Faulet
Hi, HAProxy 2.2.32 was released on 2023/12/18. It added 51 new commits after version 2.2.31. This release flushes the pipe of pending fixes: On H2 side, a possible crash was fixed when processing a response containing a DATA frame after an 1xx response (or more generally before final headers).