mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
82 lines
1.9 KiB
C
82 lines
1.9 KiB
C
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
* Copyright 1999-2004 The OpenLDAP Foundation.
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
* Public License.
|
|
*
|
|
* A copy of this license is available in the file LICENSE in the
|
|
* top-level directory of the distribution or, alternatively, at
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
*/
|
|
/* ACKNOWLEDGEMENTS:
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
* Masarati.
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/socket.h>
|
|
#include <ac/string.h>
|
|
|
|
#include "slap.h"
|
|
#include "../back-ldap/back-ldap.h"
|
|
#include "back-meta.h"
|
|
|
|
int
|
|
meta_back_conn_destroy(
|
|
Backend *be,
|
|
Connection *conn
|
|
)
|
|
{
|
|
struct metainfo *li = ( struct metainfo * )be->be_private;
|
|
struct metaconn *lc, lc_curr;
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"=>meta_back_conn_destroy: fetching conn %ld\n%s%s",
|
|
conn->c_connid, "", "" );
|
|
|
|
lc_curr.conn = conn;
|
|
|
|
ldap_pvt_thread_mutex_lock( &li->conn_mutex );
|
|
lc = avl_delete( &li->conntree, ( caddr_t )&lc_curr,
|
|
meta_back_conn_cmp );
|
|
ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
|
|
|
|
if ( lc ) {
|
|
int i;
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"=>meta_back_conn_destroy: destroying conn %ld\n%s%s",
|
|
lc->conn->c_connid, "", "" );
|
|
|
|
/*
|
|
* Cleanup rewrite session
|
|
*/
|
|
for ( i = 0; i < li->ntargets; ++i ) {
|
|
if ( lc->conns[ i ].ld == NULL ) {
|
|
continue;
|
|
}
|
|
|
|
rewrite_session_delete( li->targets[ i ]->rwmap.rwm_rw, conn );
|
|
meta_clear_one_candidate( &lc->conns[ i ], 1 );
|
|
}
|
|
|
|
free( lc->conns );
|
|
free( lc );
|
|
}
|
|
|
|
/* no response to unbind */
|
|
|
|
return 0;
|
|
}
|
|
|