mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
20 lines
233 B
C
20 lines
233 B
C
/* unbind.c - handle an ldap unbind operation */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include "slap.h"
|
|
|
|
int
|
|
ldbm_back_unbind(
|
|
Backend *be,
|
|
Connection *conn,
|
|
Operation *op
|
|
)
|
|
{
|
|
return( 0 );
|
|
}
|