1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-05 07:59:13 +08:00
|
|
|
/*
|
2000-05-13 10:47:56 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-05 07:59:13 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1999-03-22 15:14:54 +08:00
|
|
|
/*
|
|
|
|
* Mimic unused interfaces of slapd...
|
|
|
|
* needed for linking.
|
|
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "../slap.h"
|
|
|
|
|
1999-04-14 22:12:49 +08:00
|
|
|
#ifdef WIN32
|
|
|
|
time_t starttime;
|
|
|
|
#endif
|
|
|
|
|
1999-03-22 15:38:27 +08:00
|
|
|
/* bogus ../results.c */
|
|
|
|
int str2result(
|
|
|
|
char* s,
|
|
|
|
int *code,
|
|
|
|
char **matched,
|
|
|
|
char **info )
|
|
|
|
{
|
|
|
|
assert(0);
|
1999-04-14 22:12:49 +08:00
|
|
|
return 0;
|
1999-03-22 15:38:27 +08:00
|
|
|
}
|
|
|
|
|
1999-07-16 10:45:46 +08:00
|
|
|
void
|
|
|
|
send_ldap_disconnect(
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
ber_int_t err,
|
1999-08-21 03:00:44 +08:00
|
|
|
const char *text
|
1999-07-16 10:45:46 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
1999-11-30 01:44:14 +08:00
|
|
|
void
|
|
|
|
send_ldap_extended(
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
ber_int_t err,
|
|
|
|
const char *matched,
|
|
|
|
const char *text,
|
1999-12-11 03:18:33 +08:00
|
|
|
struct berval **refs,
|
2000-05-22 11:46:57 +08:00
|
|
|
const char *rspoid,
|
1999-12-10 12:52:32 +08:00
|
|
|
struct berval *rspdata,
|
|
|
|
LDAPControl **ctrls
|
1999-11-30 01:44:14 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
send_ldap_sasl(
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
ber_int_t err,
|
|
|
|
const char *matched,
|
|
|
|
const char *text,
|
1999-12-16 07:22:47 +08:00
|
|
|
struct berval **refs,
|
1999-12-10 12:52:32 +08:00
|
|
|
LDAPControl **ctrls,
|
1999-11-30 01:44:14 +08:00
|
|
|
struct berval *cred
|
|
|
|
)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
1999-03-22 15:14:54 +08:00
|
|
|
void
|
|
|
|
send_ldap_result(
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
1999-11-26 01:52:47 +08:00
|
|
|
ber_int_t err,
|
1999-08-21 03:00:44 +08:00
|
|
|
const char *matched,
|
|
|
|
const char *text,
|
1999-07-16 10:45:46 +08:00
|
|
|
struct berval **refs,
|
|
|
|
LDAPControl **ctrls
|
1999-03-22 15:14:54 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-07-16 10:45:46 +08:00
|
|
|
send_search_result(
|
1999-03-22 15:14:54 +08:00
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
1999-11-26 01:52:47 +08:00
|
|
|
ber_int_t err,
|
1999-08-21 03:00:44 +08:00
|
|
|
const char *matched,
|
|
|
|
const char *text,
|
1999-07-16 10:45:46 +08:00
|
|
|
struct berval **refs,
|
|
|
|
LDAPControl **ctrls,
|
1999-03-22 15:14:54 +08:00
|
|
|
int nentries
|
|
|
|
)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
send_search_entry(
|
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
Entry *e,
|
|
|
|
char **attrs,
|
1999-07-08 02:51:39 +08:00
|
|
|
int attrsonly,
|
1999-07-16 10:45:46 +08:00
|
|
|
LDAPControl **ctrls
|
1999-03-22 15:14:54 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
return -1;
|
|
|
|
}
|
1999-07-16 10:45:46 +08:00
|
|
|
|
|
|
|
int send_search_reference(
|
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
|
|
|
Entry *e,
|
|
|
|
struct berval **refs,
|
|
|
|
int scope,
|
|
|
|
LDAPControl **ctrls,
|
|
|
|
struct berval ***v2refs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct berval **get_entry_referrals(
|
|
|
|
Backend *be, Connection *conn, Operation *op, Entry *e )
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-08-04 07:23:05 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
int slap_sasl_init(void)
|
|
|
|
{
|
2000-07-14 07:43:24 +08:00
|
|
|
return LDAP_SUCCESS;
|
1999-08-04 07:23:05 +08:00
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
int slap_sasl_destroy(void)
|
|
|
|
{
|
2000-07-14 07:43:24 +08:00
|
|
|
return LDAP_SUCCESS;
|
1999-08-04 07:23:05 +08:00
|
|
|
}
|
2000-01-02 09:21:25 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
char * slap_sasl_secprops( const char *in )
|
2000-01-02 09:21:25 +08:00
|
|
|
{
|
2000-07-14 06:54:38 +08:00
|
|
|
assert(0);
|
|
|
|
return NULL;
|
2000-01-02 09:21:25 +08:00
|
|
|
}
|
2000-07-14 06:54:38 +08:00
|
|
|
|
2000-09-09 06:59:01 +08:00
|
|
|
void connection2anonymous( Connection *c )
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
}
|