/* unbind.c - handle an ldap unbind operation */ #include "portable.h" #include #include #include "slap.h" #include "back-bdb2.h" static int bdb2i_back_unbind_internal( BackendDB *be, Connection *conn, Operation *op ) { return( 0 ); } int bdb2_back_unbind( BackendDB *be, Connection *conn, Operation *op ) { struct timeval time1; int ret; bdb2i_start_timing( be->bd_info, &time1 ); ret = bdb2i_back_unbind_internal( be, conn, op ); bdb2i_stop_timing( be->bd_info, time1, "UNBIND", conn, op ); return( ret ); }