We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8453d0f commit 2de3b68Copy full SHA for 2de3b68
1 file changed
src/main/tls.c
@@ -530,6 +530,7 @@ tls_session_t *tls_new_client_session(TALLOC_CTX *ctx, fr_tls_server_conf_t *con
530
531
SSL_set_ex_data(ssn->ssl, FR_TLS_EX_INDEX_CONF, (void *)conf);
532
SSL_set_ex_data(ssn->ssl, FR_TLS_EX_INDEX_SSN, (void *)ssn);
533
+ SSL_set_ex_data(ssn->ssl, FR_TLS_EX_INDEX_TALLOC, (void *)ssn);
534
if (certs) SSL_set_ex_data(ssn->ssl, fr_tls_ex_index_certs, (void *)certs);
535
536
SSL_set_fd(ssn->ssl, fd);
0 commit comments