mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-12 10:54:48 +08:00
ITS#3983 fix connection_client_stop, must reset sockbuf
This commit is contained in:
parent
697b0d2a3c
commit
3fc2e1388a
@ -1158,6 +1158,13 @@ void connection_client_stop(
|
||||
c->c_conn_state = SLAP_C_INVALID;
|
||||
c->c_struct_state = SLAP_C_UNUSED;
|
||||
c->c_close_reason = "?"; /* should never be needed */
|
||||
ber_sockbuf_free( c->c_sb );
|
||||
c->c_sb = ber_sockbuf_alloc( );
|
||||
{
|
||||
ber_len_t max = sockbuf_max_incoming;
|
||||
ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max );
|
||||
}
|
||||
|
||||
connection_return( c );
|
||||
slapd_remove( s, 0, 1 );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user