From: Howard Chu Date: Thu, 12 Jan 2006 15:40:52 +0000 (+0000) Subject: ITS#4334 Must propagate connection_destroy to captive backend. X-Git-Tag: OPENLDAP_REL_ENG_2_4_BP~337 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2ba87c6fe6987556c8c12e88351424d529437500;p=openldap ITS#4334 Must propagate connection_destroy to captive backend. --- diff --git a/servers/slapd/overlays/translucent.c b/servers/slapd/overlays/translucent.c index 3fde2b1e77..eee8a6d40c 100644 --- a/servers/slapd/overlays/translucent.c +++ b/servers/slapd/overlays/translucent.c @@ -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)); }