mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
add a cleanup handler for binds (ITS#4465)
This commit is contained in:
parent
bf860f0596
commit
fc89650cce
@ -2042,6 +2042,13 @@ connection_init_log_prefix( Operation *op )
|
||||
}
|
||||
}
|
||||
|
||||
static int connection_bind_cleanup_cb( Operation *op, SlapReply *rs )
|
||||
{
|
||||
op->o_conn->c_sasl_bindop = NULL;
|
||||
|
||||
return SLAP_CB_CONTINUE;
|
||||
}
|
||||
|
||||
static int connection_bind_cb( Operation *op, SlapReply *rs )
|
||||
{
|
||||
slap_callback *cb = op->o_callback;
|
||||
@ -2111,6 +2118,7 @@ static void connection_op_queue( Operation *op )
|
||||
if (tag == LDAP_REQ_BIND) {
|
||||
slap_callback *sc = ch_calloc( 1, sizeof( slap_callback ));
|
||||
sc->sc_response = connection_bind_cb;
|
||||
sc->sc_response = connection_bind_cleanup_cb;
|
||||
sc->sc_next = op->o_callback;
|
||||
op->o_callback = sc;
|
||||
op->o_conn->c_conn_state = SLAP_C_BINDING;
|
||||
|
Loading…
Reference in New Issue
Block a user