X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Ftools%2Fmimic.c;h=2c9cd1c364ef1e98e9f6f8b7138a31b3e72d54c3;hb=113727ba53c91ab6f1b0880c5908eca43b89ec4e;hp=483550ab6eeb0a4d8874ddabe1c9273a2aa450cd;hpb=090ac0a7721ed24760673c964e8b9cdddd096094;p=openldap diff --git a/servers/slapd/tools/mimic.c b/servers/slapd/tools/mimic.c index 483550ab6e..2c9cd1c364 100644 --- a/servers/slapd/tools/mimic.c +++ b/servers/slapd/tools/mimic.c @@ -1,8 +1,24 @@ /* $OpenLDAP$ */ -/* - * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2003 The OpenLDAP Foundation. + * Portions Copyright 1998-2003 Kurt D. Zeilenga. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ +/* ACKNOWLEDGEMENTS: + * This work was initially developed by Kurt Zeilenga for inclusion + * in OpenLDAP Software. */ + + /* * Mimic unused interfaces of slapd... * needed for linking. @@ -38,6 +54,14 @@ send_ldap_disconnect( Operation *op, SlapReply *rs ) assert(0); } +int +slap_null_cb( + Operation *op, SlapReply *rs +) +{ + assert(0); +} + void slap_send_ldap_extended( Operation *op, SlapReply *rs @@ -80,6 +104,17 @@ slap_send_search_reference( Operation *op, SlapReply *rs ) return -1; } +int slap_read_controls( + Operation *op, + SlapReply *rs, + Entry *e, + const struct berval *oid, + LDAPControl **c ) +{ + assert(0); + return -1; +} + int slap_sasl_init(void) { return LDAP_SUCCESS; @@ -106,6 +141,26 @@ int slap_sasl_config( } +int connection_client_setup( + ber_socket_t s, + Listener *l, + ldap_pvt_thread_start_t *func, + void *arg ) +{ + assert(0); + return 0; +} + +void connection_client_enable( ber_socket_t s ) +{ + assert(0); +} + +void connection_client_stop( ber_socket_t s ) +{ + assert(0); +} + void connection2anonymous( Connection *c ) { assert(0); @@ -208,28 +263,6 @@ slap_modrdn2mods( return 0; } -int -slap_mods2entry( - Modifications *mods, - Entry **e, - int repl_user, - int dup, - const char **text, - char *textbuf, size_t textlen ) -{ - return 0; -} - -int -slap_entry2mods( - Entry *e, - Modifications **mods, - const char **text -) -{ - return 0; -} - int slap_sasl_getdn( Connection *conn, Operation *op, char *id, int len, char *user_realm, struct berval *dn, int flags ) { @@ -242,66 +275,40 @@ int slap_sasl_authorized( Operation *op, return -1; } -int slap_mods_check( Modifications *ml, int update, const char **text, - char *textbuf, size_t textlen, void *ctx ) -{ - return -1; -} - -int slap_mods_opattrs( Operation *op, Modifications *mods, - Modifications **modtail, const char **text, - char *textbuf, size_t textlen ) -{ - return -1; -} - int root_dse_info( Connection *conn, Entry **entry, const char **text ) { return -1; } -struct runqueue_s syncrepl_rq; - -void init_syncrepl( ) -{ - return; -} - -void* do_syncrepl( void *ctx, void *arg ) +int slap_entry2mods( Entry *e, Modifications **mods, const char **text, + char *textbuf, size_t textlen ) { - return NULL; -} - -char** str2clist( char ***out, char *in, const char *brkstr ) -{ - return NULL; + return -1; } -void syncrepl_add_glue( syncinfo_t *si, LDAP *ld, Operation *op, Entry *e, - Modifications *modlist, int syncstate, struct berval* syncUUID, - struct berval* syncCookie ) -{ - return; -} +volatile sig_atomic_t slapd_abrupt_shutdown; -#if 0 -struct berval *slap_get_commit_csn( Operation *op ) +int slap_mods_check( Modifications *ml, int update, const char **text, + char *textbuf, size_t textlen, void *ctx ) { - return NULL; + return -1; } -void slap_rewind_commit_csn( Operation *op ) +int slap_mods2entry( Modifications *mods, Entry **e, int repl_user, + int dup, const char **text, char *textbuf, size_t textlen ) { - return; + return -1; } -void slap_graduate_commit_csn( Operation *op ) +int slap_mods_opattrs( Operation *op, Modifications *mods, + Modifications **modtail, const char **text, + char *textbuf, size_t textlen ) { - return; + return -1; } -Entry *slap_create_context_csn_entry( Backend *be, struct berval *context_csn ) +int slap_parse_user( struct berval *id, struct berval *user, + struct berval *realm, struct berval *mech ) { - return NULL; + return -1; } -#endif