openldap/servers/slapd/back-bdb2/unbind.c
Kurt Spanier 548942edbe BugFix and selection in the test-suite of the bdb2 backend-specific
slapd server timing via a new slapd command line option '-t'.
1999-02-12 15:22:43 +00:00

39 lines
583 B
C

/* unbind.c - handle an ldap unbind operation */
#include "portable.h"
#include <stdio.h>
#include <ac/socket.h>
#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 );
}