@@ -328,7 +328,7 @@ uint64_t qd_tls_config_get_ordinal(const qd_tls_config_t *config)
328
328
329
329
uint64_t qd_tls_config_get_oldest_valid_ordinal (const qd_tls_config_t * config )
330
330
{
331
- // config->oldest_valid_ordinal can only be changed by the management thread . Calling this from any other thread
331
+ // config->oldest_valid_ordinal can only be changed by the management thread. Calling this from any other thread
332
332
// risks returning a stale value.
333
333
ASSERT_MGMT_THREAD ;
334
334
@@ -348,7 +348,7 @@ void qd_tls_config_register_update_callback(qd_tls_config_t *config, void *updat
348
348
}
349
349
350
350
351
- void qd_tls_config_cancel_update_callback (qd_tls_config_t * config )
351
+ void qd_tls_config_unregister_update_callback (qd_tls_config_t * config )
352
352
{
353
353
// Since this function can only be called on the mgmt thread there is no chance that the handler is being run while
354
354
// it is being cancelled.
@@ -636,7 +636,7 @@ int qd_tls_session_get_ssf(const qd_tls_session_t *tls_session)
636
636
}
637
637
638
638
639
- uint64_t qd_tls_session_get_profile_ordinal (const qd_tls_session_t * session )
639
+ uint64_t qd_tls_session_get_ssl_profile_ordinal (const qd_tls_session_t * session )
640
640
{
641
641
if (session )
642
642
return session -> ordinal ;
@@ -845,7 +845,7 @@ static qd_error_t _update_tls_config(qd_tls_config_t *tls_config, const qd_ssl2_
845
845
// new sessions while we change pointers.
846
846
847
847
sys_mutex_lock (& tls_config -> lock );
848
- old_cfg = tls_config -> proton_tls_cfg ;
848
+ old_cfg = tls_config -> proton_tls_cfg ;
849
849
tls_config -> proton_tls_cfg = new_cfg ;
850
850
851
851
// And refresh any parameters that must be used when creating new sessions:
0 commit comments