]> git.sur5r.net Git - openldap/commitdiff
ITS#4334 Must propagate connection_destroy to captive backend.
authorHoward Chu <hyc@openldap.org>
Thu, 12 Jan 2006 15:40:52 +0000 (15:40 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 12 Jan 2006 15:40:52 +0000 (15:40 +0000)
servers/slapd/overlays/translucent.c

index 3fde2b1e77154c1ba7ebcc7c3e320716d66785bd..eee8a6d40ce4a1d6c222ab631c4195bf39fe26d7 100644 (file)
@@ -583,6 +583,27 @@ static int translucent_bind(Operation *op, SlapReply *rs) {
        return(rc);
 }
 
+/*
+** translucent_connection_destroy()
+**     pass disconnect notification to captive backend;
+**
+*/
+
+static int translucent_connection_destroy(BackendDB *be, Connection *conn) {
+       slap_overinst *on = (slap_overinst *) be->bd_info;
+       overlay_stack *ov = on->on_bi.bi_private;
+       void *private = be->be_private;
+       int rc = 0;
+
+       Debug(LDAP_DEBUG_TRACE, "translucent_connection_destroy\n", 0, 0, 0);
+
+       be->be_private = ov->private;
+       rc = ov->info->bi_connection_destroy(be, conn);
+       be->be_private = private;
+
+       return(rc);
+}
+
 /*
 ** translucent_db_config()
 **     pass config directives to captive backend;
@@ -788,6 +809,7 @@ int translucent_initialize() {
        translucent.on_bi.bi_op_delete  = translucent_delete;
        translucent.on_bi.bi_op_search  = translucent_search;
        translucent.on_bi.bi_op_compare = translucent_compare;
+       translucent.on_bi.bi_connection_destroy = translucent_connection_destroy;
 
        return(overlay_register(&translucent));
 }