mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
49 lines
587 B
C
49 lines
587 B
C
|
/*
|
||
|
* Mimic unused interfaces of slapd...
|
||
|
* needed for linking.
|
||
|
*/
|
||
|
#include "portable.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "../slap.h"
|
||
|
|
||
|
void
|
||
|
send_ldap_result(
|
||
|
Connection *conn,
|
||
|
Operation *op,
|
||
|
int err,
|
||
|
char *matched,
|
||
|
char *text
|
||
|
)
|
||
|
{
|
||
|
assert(0);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
send_ldap_search_result(
|
||
|
Connection *conn,
|
||
|
Operation *op,
|
||
|
int err,
|
||
|
char *matched,
|
||
|
char *text,
|
||
|
int nentries
|
||
|
)
|
||
|
{
|
||
|
assert(0);
|
||
|
}
|
||
|
|
||
|
int
|
||
|
send_search_entry(
|
||
|
Backend *be,
|
||
|
Connection *conn,
|
||
|
Operation *op,
|
||
|
Entry *e,
|
||
|
char **attrs,
|
||
|
int attrsonly
|
||
|
)
|
||
|
{
|
||
|
assert(0);
|
||
|
return -1;
|
||
|
}
|