1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-04 19:59:13 -04:00
|
|
|
/*
|
2000-05-12 22:47:56 -04:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-04 19:59:13 -04:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
|
*/
|
1999-03-22 02:14:54 -05:00
|
|
|
/*
|
|
|
|
|
* Mimic unused interfaces of slapd...
|
|
|
|
|
* needed for linking.
|
|
|
|
|
*/
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include "../slap.h"
|
|
|
|
|
|
1999-04-14 10:12:49 -04:00
|
|
|
#ifdef WIN32
|
|
|
|
|
time_t starttime;
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-07-14 13:34:24 -04:00
|
|
|
/* because Versionstr is used in back-monitor */
|
|
|
|
|
const char Versionstr[] = "";
|
|
|
|
|
|
1999-03-22 02:38:27 -05:00
|
|
|
/* bogus ../results.c */
|
|
|
|
|
int str2result(
|
|
|
|
|
char* s,
|
|
|
|
|
int *code,
|
|
|
|
|
char **matched,
|
|
|
|
|
char **info )
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
1999-04-14 10:12:49 -04:00
|
|
|
return 0;
|
1999-03-22 02:38:27 -05:00
|
|
|
}
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
void
|
|
|
|
|
send_ldap_disconnect(
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
|
|
|
|
ber_int_t err,
|
1999-08-20 15:00:44 -04:00
|
|
|
const char *text
|
1999-07-15 22:45:46 -04:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-29 12:44:14 -05:00
|
|
|
void
|
|
|
|
|
send_ldap_extended(
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
|
|
|
|
ber_int_t err,
|
|
|
|
|
const char *matched,
|
|
|
|
|
const char *text,
|
1999-12-10 14:18:33 -05:00
|
|
|
struct berval **refs,
|
2000-05-21 23:46:57 -04:00
|
|
|
const char *rspoid,
|
1999-12-09 23:52:32 -05:00
|
|
|
struct berval *rspdata,
|
|
|
|
|
LDAPControl **ctrls
|
1999-11-29 12:44:14 -05:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
send_ldap_sasl(
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
|
|
|
|
ber_int_t err,
|
|
|
|
|
const char *matched,
|
|
|
|
|
const char *text,
|
1999-12-15 18:22:47 -05:00
|
|
|
struct berval **refs,
|
1999-12-09 23:52:32 -05:00
|
|
|
LDAPControl **ctrls,
|
1999-11-29 12:44:14 -05:00
|
|
|
struct berval *cred
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
1999-03-22 02:14:54 -05:00
|
|
|
void
|
|
|
|
|
send_ldap_result(
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
1999-11-25 12:52:47 -05:00
|
|
|
ber_int_t err,
|
1999-08-20 15:00:44 -04:00
|
|
|
const char *matched,
|
|
|
|
|
const char *text,
|
1999-07-15 22:45:46 -04:00
|
|
|
struct berval **refs,
|
|
|
|
|
LDAPControl **ctrls
|
1999-03-22 02:14:54 -05:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1999-07-15 22:45:46 -04:00
|
|
|
send_search_result(
|
1999-03-22 02:14:54 -05:00
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
1999-11-25 12:52:47 -05:00
|
|
|
ber_int_t err,
|
1999-08-20 15:00:44 -04:00
|
|
|
const char *matched,
|
|
|
|
|
const char *text,
|
1999-07-15 22:45:46 -04:00
|
|
|
struct berval **refs,
|
|
|
|
|
LDAPControl **ctrls,
|
1999-03-22 02:14:54 -05:00
|
|
|
int nentries
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
send_search_entry(
|
|
|
|
|
Backend *be,
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
|
|
|
|
Entry *e,
|
|
|
|
|
char **attrs,
|
1999-07-07 14:51:39 -04:00
|
|
|
int attrsonly,
|
1999-07-15 22:45:46 -04:00
|
|
|
LDAPControl **ctrls
|
1999-03-22 02:14:54 -05:00
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
1999-07-15 22:45:46 -04:00
|
|
|
|
|
|
|
|
int send_search_reference(
|
|
|
|
|
Backend *be,
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
|
|
|
|
Entry *e,
|
|
|
|
|
struct berval **refs,
|
|
|
|
|
LDAPControl **ctrls,
|
|
|
|
|
struct berval ***v2refs
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-13 18:54:38 -04:00
|
|
|
int slap_sasl_init(void)
|
|
|
|
|
{
|
2000-07-13 19:43:24 -04:00
|
|
|
return LDAP_SUCCESS;
|
1999-08-03 19:23:05 -04:00
|
|
|
}
|
|
|
|
|
|
2000-07-13 18:54:38 -04:00
|
|
|
int slap_sasl_destroy(void)
|
|
|
|
|
{
|
2000-07-13 19:43:24 -04:00
|
|
|
return LDAP_SUCCESS;
|
1999-08-03 19:23:05 -04:00
|
|
|
}
|
2000-01-01 20:21:25 -05:00
|
|
|
|
2000-07-13 18:54:38 -04:00
|
|
|
char * slap_sasl_secprops( const char *in )
|
2000-01-01 20:21:25 -05:00
|
|
|
{
|
2001-05-02 15:41:27 -04:00
|
|
|
return NULL;
|
2000-01-01 20:21:25 -05:00
|
|
|
}
|
2000-07-13 18:54:38 -04:00
|
|
|
|
2000-09-21 13:32:54 -04:00
|
|
|
|
|
|
|
|
int slap_sasl_regexp_config( const char *match, const char *replace )
|
|
|
|
|
{
|
2000-09-21 17:28:32 -04:00
|
|
|
return(0);
|
2000-09-21 13:32:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-08 18:59:01 -04:00
|
|
|
void connection2anonymous( Connection *c )
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
2000-09-21 13:32:54 -04:00
|
|
|
|
2001-07-14 13:34:24 -04:00
|
|
|
Connection * connection_first( ber_socket_t *b )
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
2001-07-21 19:13:04 -04:00
|
|
|
return NULL;
|
2001-07-14 13:34:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Connection * connection_next( Connection *c, ber_socket_t *b )
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
2001-07-21 19:13:04 -04:00
|
|
|
return NULL;
|
2001-07-14 13:34:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void connection_done( Connection *c )
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char * connection_state2str( int state )
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
2001-07-21 19:13:04 -04:00
|
|
|
return NULL;
|
2001-07-14 13:34:24 -04:00
|
|
|
}
|
|
|
|
|
|
2001-12-08 21:57:50 -05:00
|
|
|
void replog( Backend *be, Operation *op, char *dn, char *ndn, void *change)
|
2001-07-13 21:26:02 -04:00
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-14 13:48:12 -04:00
|
|
|
void slap_mods_free( Modifications *ml )
|
|
|
|
|
{
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-21 10:15:23 -04:00
|
|
|
int add_replica_info( Backend *be, const char *host )
|
|
|
|
|
{
|
2001-07-21 19:13:04 -04:00
|
|
|
return 0;
|
2001-07-21 10:15:23 -04:00
|
|
|
}
|
2001-07-28 07:24:22 -04:00
|
|
|
|
2001-10-25 11:15:34 -04:00
|
|
|
int add_replica_suffix( Backend *be, int nr, const char *suffix )
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-28 07:24:22 -04:00
|
|
|
int parse_limits( Backend *be, const char *fname, int lineno, int argc, char **argv )
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-01 06:09:04 -04:00
|
|
|
int parse_limit( const char *arg, struct slap_limits_set *limit )
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int get_limits( Backend *be, const char *ndn, struct slap_limits_set **limit )
|
2001-07-28 07:24:22 -04:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-10-23 19:29:41 -04:00
|
|
|
int read_root_dse_file ( const char *file )
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2001-12-22 09:24:13 -05:00
|
|
|
|
|
|
|
|
Attribute *
|
|
|
|
|
slap_operational_subschemaSubentry( void )
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Attribute *
|
|
|
|
|
slap_operational_hasSubordinate( int hs )
|
|
|
|
|
{
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|