mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
17 lines
232 B
C
17 lines
232 B
C
/* unbind.c - handle an ldap unbind operation */
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include "slap.h"
|
|
|
|
int
|
|
ldbm_back_unbind(
|
|
Backend *be,
|
|
Connection *conn,
|
|
Operation *op
|
|
)
|
|
{
|
|
return( 0 );
|
|
}
|