mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-31 14:50:34 +08:00
ITS#9597 Send Notice of Disconnection when shutting down a client connection
This commit is contained in:
parent
96d0eec034
commit
b66a62799d
@ -525,7 +525,22 @@ lload_connection_close( LloadConnection *c, void *arg )
|
||||
/* We were approached from the connection list */
|
||||
assert( IS_ALIVE( c, c_refcnt ) );
|
||||
|
||||
/* Need to acquire this first, even if we won't need it */
|
||||
checked_lock( &c->c_io_mutex );
|
||||
CONNECTION_LOCK(c);
|
||||
|
||||
/* Only if it's a client */
|
||||
if ( c->c_state == LLOAD_C_OPEN && c->c_destroy == clients_destroy ) {
|
||||
if ( c->c_pendingber != NULL ||
|
||||
(c->c_pendingber = ber_alloc()) != NULL ) {
|
||||
ber_printf( c->c_pendingber, "t{tit{esss}}", LDAP_TAG_MESSAGE,
|
||||
LDAP_TAG_MSGID, LDAP_RES_UNSOLICITED,
|
||||
LDAP_RES_EXTENDED, LDAP_UNAVAILABLE, "",
|
||||
"connection closing", LDAP_NOTICE_OF_DISCONNECTION );
|
||||
}
|
||||
}
|
||||
checked_unlock( &c->c_io_mutex );
|
||||
|
||||
if ( !gentle || !c->c_ops ) {
|
||||
CONNECTION_DESTROY(c);
|
||||
return LDAP_SUCCESS;
|
||||
|
Loading…
x
Reference in New Issue
Block a user