commit | 939b0bf866b349391734dcb29d730bf9057e8d7d | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon Apr 11 11:29:11 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon Apr 11 19:33:04 2022 +0200 |
tree | 5c143b86eb46f037024a3495cd8f24cb69c7becb | |
parent | de827958a2d1f727cdae752427134d0873af3e94 [diff] |
MEDIUM: ssl: stop using conn->xprt_ctx to access the ssl_sock_ctx The SSL functions must not use conn->xprt_ctx anymore but find the context by calling conn_get_ssl_sock_ctx(), which will properly pass through the transport layers to retrieve the desired information. Otherwise when the functions are called on a QUIC connection, they refuse to work for not being called on the proper transport.