]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
55028348179e159903751e9071a62f6f2b860e7a
[openldap] / servers / slapd / proto-slap.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 #ifndef PROTO_SLAP_H
7 #define PROTO_SLAP_H
8
9 #include <ldap_cdefs.h>
10 #include "ldap_pvt.h"
11
12 LDAP_BEGIN_DECL
13
14 /*
15  * acl.c
16  */
17 LDAP_SLAPD_F (int) access_allowed LDAP_P((
18         Operation *op,
19         Entry *e, AttributeDescription *desc, struct berval *val,
20         slap_access_t access,
21         AccessControlState *state ));
22 LDAP_SLAPD_F (int) acl_check_modlist LDAP_P((
23         Operation *op, Entry *e, Modifications *ml ));
24
25 LDAP_SLAPD_F (void) acl_append( AccessControl **l, AccessControl *a );
26
27 /*
28  * aclparse.c
29  */
30 LDAP_SLAPD_F (void) parse_acl LDAP_P(( Backend *be,
31         const char *fname, int lineno,
32         int argc, char **argv ));
33
34 LDAP_SLAPD_F (char *) access2str LDAP_P(( slap_access_t access ));
35 LDAP_SLAPD_F (slap_access_t) str2access LDAP_P(( const char *str ));
36
37 #define ACCESSMASK_MAXLEN       sizeof("unknown (+wrscan)")
38 LDAP_SLAPD_F (char *) accessmask2str LDAP_P(( slap_mask_t mask, char* ));
39 LDAP_SLAPD_F (slap_mask_t) str2accessmask LDAP_P(( const char *str ));
40 LDAP_SLAPD_F (void) acl_destroy LDAP_P(( AccessControl*, AccessControl* ));
41 LDAP_SLAPD_F (void) acl_free LDAP_P(( AccessControl *a ));
42
43 /*
44  * ad.c
45  */
46 LDAP_SLAPD_F (int) slap_str2ad LDAP_P((
47         const char *,
48         AttributeDescription **ad,
49         const char **text ));
50
51 LDAP_SLAPD_F (int) slap_bv2ad LDAP_P((
52         struct berval *bv,
53         AttributeDescription **ad,
54         const char **text ));
55
56 LDAP_SLAPD_F (void) ad_destroy LDAP_P(( AttributeDescription * ));
57
58 #define ad_cmp(l,r)     (((l)->ad_cname.bv_len < (r)->ad_cname.bv_len) \
59         ? -1 : (((l)->ad_cname.bv_len > (r)->ad_cname.bv_len) \
60                 ? 1 : strcasecmp((l)->ad_cname.bv_val, (r)->ad_cname.bv_val )))
61
62 LDAP_SLAPD_F (int) is_ad_subtype LDAP_P((
63         AttributeDescription *sub,
64         AttributeDescription *super ));
65
66 LDAP_SLAPD_F (int) ad_inlist LDAP_P((
67         AttributeDescription *desc,
68         AttributeName *attrs ));
69
70 LDAP_SLAPD_F (int) slap_str2undef_ad LDAP_P((
71         const char *,
72         AttributeDescription **ad,
73         const char **text ));
74
75 LDAP_SLAPD_F (int) slap_bv2undef_ad LDAP_P((
76         struct berval *bv,
77         AttributeDescription **ad,
78         const char **text ));
79
80 LDAP_SLAPD_F (AttributeDescription *) ad_find_tags LDAP_P((
81         AttributeType *type,
82         struct berval *tags ));
83
84 LDAP_SLAPD_F (AttributeName *) str2anlist LDAP_P(( AttributeName *an,
85         char *str, const char *brkstr ));
86 LDAP_SLAPD_F (int) an_find LDAP_P(( AttributeName *a, struct berval *s ));
87 LDAP_SLAPD_F (int) ad_define_option LDAP_P(( const char *name,
88         const char *fname, int lineno ));
89
90 LDAP_SLAPD_F (MatchingRule *) ad_mr(
91         AttributeDescription *ad,
92         unsigned usage );
93
94 /*
95  * add.c
96  */
97 LDAP_SLAPD_F (int) slap_mods2entry LDAP_P(( Modifications *mods, Entry **e,
98         int repl_user, const char **text, char *textbuf, size_t textlen ));
99
100 /*
101  * at.c
102  */
103 LDAP_SLAPD_F (void) at_config LDAP_P((
104         const char *fname, int lineno,
105         int argc, char **argv ));
106 LDAP_SLAPD_F (AttributeType *) at_find LDAP_P((
107         const char *name ));
108 LDAP_SLAPD_F (AttributeType *) at_bvfind LDAP_P((
109         struct berval *name ));
110 LDAP_SLAPD_F (int) at_find_in_list LDAP_P((
111         AttributeType *sat, AttributeType **list ));
112 LDAP_SLAPD_F (int) at_append_to_list LDAP_P((
113         AttributeType *sat, AttributeType ***listp ));
114 LDAP_SLAPD_F (int) at_delete_from_list LDAP_P((
115         int pos, AttributeType ***listp ));
116 LDAP_SLAPD_F (int) at_schema_info LDAP_P(( Entry *e ));
117 LDAP_SLAPD_F (int) at_add LDAP_P((
118         LDAPAttributeType *at, const char **err ));
119 LDAP_SLAPD_F (void) at_destroy LDAP_P(( void ));
120
121 LDAP_SLAPD_F (int) is_at_subtype LDAP_P((
122         AttributeType *sub,
123         AttributeType *super ));
124
125 LDAP_SLAPD_F (int) is_at_syntax LDAP_P((
126         AttributeType *at,
127         const char *oid ));
128
129 LDAP_SLAPD_F (int) at_start LDAP_P(( AttributeType **at ));
130 LDAP_SLAPD_F (int) at_next LDAP_P(( AttributeType **at ));
131
132 /*
133  * attr.c
134  */
135 LDAP_SLAPD_F (void) attr_free LDAP_P(( Attribute *a ));
136 LDAP_SLAPD_F (Attribute *) attr_dup LDAP_P(( Attribute *a ));
137
138 #define attr_mergeit( e, d, v ) attr_merge( e, d, v, NULL /* FIXME */ )
139 #define attr_mergeit_one( e, d, v ) attr_merge_one( e, d, v, NULL /* FIXME */ )
140
141 LDAP_SLAPD_F (int) attr_merge LDAP_P(( Entry *e,
142         AttributeDescription *desc,
143         BerVarray vals,
144         BerVarray nvals ));
145 LDAP_SLAPD_F (int) attr_merge_one LDAP_P(( Entry *e,
146         AttributeDescription *desc,
147         struct berval *val,
148         struct berval *nval ));
149 LDAP_SLAPD_F (Attribute *) attrs_find LDAP_P((
150         Attribute *a, AttributeDescription *desc ));
151 LDAP_SLAPD_F (Attribute *) attr_find LDAP_P((
152         Attribute *a, AttributeDescription *desc ));
153 LDAP_SLAPD_F (int) attr_delete LDAP_P((
154         Attribute **attrs, AttributeDescription *desc ));
155
156 LDAP_SLAPD_F (void) attrs_free LDAP_P(( Attribute *a ));
157 LDAP_SLAPD_F (Attribute *) attrs_dup LDAP_P(( Attribute *a ));
158
159
160 /*
161  * ava.c
162  */
163 LDAP_SLAPD_F (int) get_ava LDAP_P((
164         BerElement *ber,
165         AttributeAssertion **ava,
166         unsigned usage,
167         const char **text ));
168 LDAP_SLAPD_F (void) ava_free LDAP_P((
169         AttributeAssertion *ava,
170         int freeit ));
171
172 /*
173  * backend.c
174  */
175 LDAP_SLAPD_F (int) backend_init LDAP_P((void));
176 LDAP_SLAPD_F (int) backend_add LDAP_P((BackendInfo *aBackendInfo));
177 LDAP_SLAPD_F (int) backend_num LDAP_P((Backend *be));
178 LDAP_SLAPD_F (int) backend_startup LDAP_P((Backend *be));
179 LDAP_SLAPD_F (int) backend_sync LDAP_P((Backend *be));
180 LDAP_SLAPD_F (int) backend_shutdown LDAP_P((Backend *be));
181 LDAP_SLAPD_F (int) backend_destroy LDAP_P((void));
182
183 LDAP_SLAPD_F (BackendInfo *) backend_info LDAP_P(( const char *type ));
184 LDAP_SLAPD_F (BackendDB *) backend_db_init LDAP_P(( const char *type ));
185
186 LDAP_SLAPD_F (BackendDB *) select_backend LDAP_P((
187         struct berval * dn,
188         int manageDSAit,
189         int noSubordinates ));
190
191 LDAP_SLAPD_F (int) be_issuffix LDAP_P(( Backend *be,
192         struct berval *suffix ));
193 LDAP_SLAPD_F (int) be_isroot LDAP_P(( Backend *be,
194         struct berval *ndn ));
195 LDAP_SLAPD_F (int) be_isroot_pw LDAP_P(( Operation *op ));
196 LDAP_SLAPD_F (int) be_isupdate LDAP_P(( Backend *be, struct berval *ndn ));
197 LDAP_SLAPD_F (struct berval *) be_root_dn LDAP_P(( Backend *be ));
198 LDAP_SLAPD_F (int) be_entry_get_rw LDAP_P(( struct slap_op *o,
199                 struct berval *ndn, ObjectClass *oc,
200                 AttributeDescription *at, int rw, Entry **e ));
201 LDAP_SLAPD_F (int) be_entry_release_rw LDAP_P((
202         Operation *o, Entry *e, int rw ));
203 #define be_entry_release_r( o, e ) be_entry_release_rw( o, e, 0 )
204 #define be_entry_release_w( o, e ) be_entry_release_rw( o, e, 1 )
205
206 LDAP_SLAPD_F (int) backend_unbind LDAP_P((Operation *op, SlapReply *rs));
207 LDAP_SLAPD_F (int) backend_connection_init LDAP_P((Connection *conn));
208 LDAP_SLAPD_F (int) backend_connection_destroy LDAP_P((Connection *conn));
209
210 LDAP_SLAPD_F( int )     backend_check_restrictions LDAP_P((
211         Operation *op,
212         SlapReply *rs,
213         struct berval *opdata ));
214
215 LDAP_SLAPD_F( int )     backend_check_referrals LDAP_P((
216         Operation *op,
217         SlapReply *rs ));
218
219 LDAP_SLAPD_F (int) backend_group LDAP_P((
220         Operation *op,
221         Entry *target,
222         struct berval *gr_ndn,
223         struct berval *op_ndn,
224         ObjectClass *group_oc,
225         AttributeDescription *group_at
226 ));
227
228 LDAP_SLAPD_F (int) backend_attribute LDAP_P((
229         Operation *op,
230         Entry *target,
231         struct berval *entry_ndn,
232         AttributeDescription *entry_at,
233         BerVarray *vals
234 ));
235
236 LDAP_SLAPD_F (Attribute *) backend_operational(
237         Operation *op,
238         SlapReply *rs,
239         int opattrs );
240
241 /*
242  * backglue.c
243  */
244
245 LDAP_SLAPD_F (int) glue_back_initialize( BackendInfo *bi );
246 LDAP_SLAPD_F (int) glue_sub_init( void );
247
248 /*
249  * ch_malloc.c
250  */
251 #ifdef CSRIMALLOC
252 #define ch_malloc malloc
253 #define ch_realloc realloc
254 #define ch_calloc calloc
255 #define ch_strdup strdup
256 #define ch_free free
257
258 #else
259 LDAP_SLAPD_F (void *) ch_malloc LDAP_P(( ber_len_t size ));
260 LDAP_SLAPD_F (void *) ch_realloc LDAP_P(( void *block, ber_len_t size ));
261 LDAP_SLAPD_F (void *) ch_calloc LDAP_P(( ber_len_t nelem, ber_len_t size ));
262 LDAP_SLAPD_F (char *) ch_strdup LDAP_P(( const char *string ));
263 LDAP_SLAPD_F (void) ch_free LDAP_P(( void * ));
264
265 #ifndef CH_FREE
266 #undef free
267 #define free ch_free
268 #endif
269 #endif
270
271 /*
272  * controls.c
273  */
274 LDAP_SLAPD_F (int) get_ctrls LDAP_P((
275         Operation *op,
276         SlapReply *rs,
277         int senderrors ));
278 LDAP_SLAPD_F (int) register_supported_control LDAP_P((
279         const char *controloid,
280         slap_mask_t controlmask,
281         char **controlexops,
282         SLAP_CTRL_PARSE_FN *controlparsefn ));
283 LDAP_SLAPD_F (int) slap_controls_init LDAP_P ((void));
284 LDAP_SLAPD_F (void) controls_destroy LDAP_P ((void));
285 LDAP_SLAPD_F (int) controls_root_dse_info LDAP_P ((Entry *e));
286 LDAP_SLAPD_F (int) get_supported_controls LDAP_P (( char ***ctrloidsp, slap_mask_t **ctrlmasks ));
287
288 /*
289  * config.c
290  */
291 LDAP_SLAPD_F (int) read_config LDAP_P(( const char *fname, int depth ));
292 LDAP_SLAPD_F (void) config_destroy LDAP_P ((void));
293
294 /*
295  * connection.c
296  */
297 LDAP_SLAPD_F (int) connections_init LDAP_P((void));
298 LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
299 LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
300 LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
301
302 LDAP_SLAPD_F (long) connection_init LDAP_P((
303         ber_socket_t s,
304         Listener* url,
305         const char* dnsname,
306         const char* peername,
307         int use_tls,
308         slap_ssf_t ssf,
309         const char *id ));
310
311 LDAP_SLAPD_F (void) connection_closing LDAP_P(( Connection *c ));
312 LDAP_SLAPD_F (int) connection_state_closing LDAP_P(( Connection *c ));
313 LDAP_SLAPD_F (const char *) connection_state2str LDAP_P(( int state ))
314         LDAP_GCCATTR((const));
315
316 LDAP_SLAPD_F (int) connection_write LDAP_P((ber_socket_t s));
317 LDAP_SLAPD_F (int) connection_read LDAP_P((ber_socket_t s));
318
319 LDAP_SLAPD_F (unsigned long) connections_nextid(void);
320
321 LDAP_SLAPD_F (Connection *) connection_first LDAP_P(( ber_socket_t * ));
322 LDAP_SLAPD_F (Connection *) connection_next LDAP_P((
323         Connection *, ber_socket_t *));
324 LDAP_SLAPD_F (void) connection_done LDAP_P((Connection *));
325
326 LDAP_SLAPD_F (void) connection2anonymous LDAP_P((Connection *));
327
328 /*
329  * cr.c
330  */
331 LDAP_SLAPD_F (int) cr_schema_info( Entry *e );
332
333 LDAP_SLAPD_F (int) cr_add LDAP_P((
334         LDAPContentRule *oc,
335         int user,
336         const char **err));
337 LDAP_SLAPD_F (void) cr_destroy LDAP_P(( void ));
338
339 LDAP_SLAPD_F (ContentRule *) cr_find LDAP_P((
340         const char *crname));
341 LDAP_SLAPD_F (ContentRule *) cr_bvfind LDAP_P((
342         struct berval *crname));
343
344 /*
345  * daemon.c
346  */
347 LDAP_SLAPD_F (void) slapd_add_internal(ber_socket_t s);
348 LDAP_SLAPD_F (int) slapd_daemon_init( const char *urls );
349 LDAP_SLAPD_F (int) slapd_daemon_destroy(void);
350 LDAP_SLAPD_F (int) slapd_daemon(void);
351 LDAP_SLAPD_F (Listener **)      slapd_get_listeners LDAP_P((void));
352 LDAP_SLAPD_F (void) slapd_remove LDAP_P((ber_socket_t s, int wake));
353
354 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_shutdown LDAP_P((int sig));
355 LDAP_SLAPD_F (RETSIGTYPE) slap_sig_wake LDAP_P((int sig));
356
357 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
358 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
359 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
360 LDAP_SLAPD_F (void) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
361
362 /*
363  * dn.c
364  */
365
366 #define dn_match(dn1, dn2)      ( ber_bvcmp((dn1), (dn2)) == 0 )
367 #define bvmatch(bv1, bv2)       ( ((bv1)->bv_len == (bv2)->bv_len) && (memcmp((bv1)->bv_val, (bv2)->bv_val, (bv1)->bv_len) == 0) )
368
369 LDAP_SLAPD_F (int) dnValidate LDAP_P((
370         Syntax *syntax, 
371         struct berval *val ));
372
373 LDAP_SLAPD_F (int) dnNormalize LDAP_P((
374         slap_mask_t use,
375         Syntax *syntax, 
376         MatchingRule *mr,
377         struct berval *val, 
378         struct berval *normalized ));
379 #define dnNormalize2(s,v,n)             dnNormalize(0,(s),NULL,(v),(n))
380
381 LDAP_SLAPD_F (int) dnPretty LDAP_P(( 
382         Syntax *syntax, 
383         struct berval *val, 
384         struct berval **pretty ));
385
386 LDAP_SLAPD_F (int) dnPretty2 LDAP_P(( 
387         Syntax *syntax, 
388         struct berval *val, 
389         struct berval *pretty ));
390
391 LDAP_SLAPD_F (int) dnPrettyNormal LDAP_P(( 
392         Syntax *syntax, 
393         struct berval *val, 
394         struct berval *pretty,
395         struct berval *normal ));
396
397 LDAP_SLAPD_F (int) dnMatch LDAP_P(( 
398         int *matchp, 
399         slap_mask_t flags, 
400         Syntax *syntax, 
401         MatchingRule *mr,
402         struct berval *value, 
403         void *assertedValue ));
404
405 LDAP_SLAPD_F (int) dnIsSuffix LDAP_P((
406         const struct berval *dn, const struct berval *suffix ));
407
408 LDAP_SLAPD_F (int) dnExtractRdn LDAP_P((
409         struct berval *dn, struct berval *rdn ));
410
411 LDAP_SLAPD_F (int) rdnValidate LDAP_P(( struct berval * rdn ));
412
413 LDAP_SLAPD_F (int) dn_rdnlen LDAP_P(( Backend *be, struct berval *dn ));
414
415 LDAP_SLAPD_F (void) build_new_dn LDAP_P((
416         struct berval * new_dn,
417         struct berval * parent_dn,
418         struct berval * newrdn ));
419
420 LDAP_SLAPD_F (void) dnParent LDAP_P(( struct berval *dn, struct berval *pdn ));
421
422 LDAP_SLAPD_F (int) dnX509normalize LDAP_P(( void *x509_name, struct berval *out ));
423
424 LDAP_SLAPD_F (int) dnX509peerNormalize LDAP_P(( void *ssl, struct berval *dn ));
425
426 LDAP_SLAPD_F (int) dnPrettyNormalDN LDAP_P(( Syntax *syntax, struct berval *val, LDAPDN **dn, int flags ));
427 #define dnPrettyDN(syntax, val, dn) \
428         dnPrettyNormalDN((syntax),(val),(dn), SLAP_LDAPDN_PRETTY)
429 #define dnNormalDN(syntax, val, dn) \
430         dnPrettyNormalDN((syntax),(val),(dn), 0)
431
432
433 /*
434  * entry.c
435  */
436 LDAP_SLAPD_V (const Entry) slap_entry_root;
437
438 LDAP_SLAPD_F (int) entry_destroy LDAP_P((void));
439
440 LDAP_SLAPD_F (Entry *) str2entry LDAP_P(( char  *s ));
441 LDAP_SLAPD_F (char *) entry2str LDAP_P(( Entry *e, int *len ));
442
443 LDAP_SLAPD_F (int) entry_decode LDAP_P(( struct berval *bv, Entry **e ));
444 LDAP_SLAPD_F (int) entry_encode LDAP_P(( Entry *e, struct berval *bv ));
445
446 LDAP_SLAPD_F (void) entry_free LDAP_P(( Entry *e ));
447 LDAP_SLAPD_F (int) entry_cmp LDAP_P(( Entry *a, Entry *b ));
448 LDAP_SLAPD_F (int) entry_dn_cmp LDAP_P(( const void *v_a, const void *v_b ));
449 LDAP_SLAPD_F (int) entry_id_cmp LDAP_P(( const void *v_a, const void *v_b ));
450
451 /*
452  * extended.c
453  */
454 #ifdef LDAP_EXOP_X_CANCEL
455 const struct berval slap_EXOP_CANCEL;
456 #endif
457 const struct berval slap_EXOP_WHOAMI;
458 const struct berval slap_EXOP_MODIFY_PASSWD;
459 const struct berval slap_EXOP_START_TLS;
460
461 typedef int (SLAP_EXTOP_MAIN_FN) LDAP_P(( Operation *op, SlapReply *rs ));
462
463 typedef int (SLAP_EXTOP_GETOID_FN) LDAP_P((
464         int index, struct berval *oid, int blen ));
465
466 LDAP_SLAPD_F (int) load_extop LDAP_P((
467         struct berval *ext_oid,
468         SLAP_EXTOP_MAIN_FN *ext_main ));
469
470 LDAP_SLAPD_F (int) extops_init LDAP_P(( void ));
471
472 LDAP_SLAPD_F (int) extops_kill LDAP_P(( void ));
473
474 LDAP_SLAPD_F (struct berval *) get_supported_extop LDAP_P((int index));
475
476 /*
477  *  * cancel.c
478  *   */
479 LDAP_SLAPD_F ( SLAP_EXTOP_MAIN_FN ) cancel_extop;
480
481 /*
482  * filter.c
483  */
484 LDAP_SLAPD_F (int) get_filter LDAP_P((
485         Connection *conn,
486         BerElement *ber,
487         Filter **filt,
488         const char **text ));
489
490 LDAP_SLAPD_F (void) filter_free LDAP_P(( Filter *f ));
491 LDAP_SLAPD_F (void) filter2bv LDAP_P(( Filter *f, struct berval *bv ));
492
493 LDAP_SLAPD_F (int) get_vrFilter LDAP_P(( Connection *conn, BerElement *ber,
494         ValuesReturnFilter **f,
495         const char **text ));
496
497 LDAP_SLAPD_F (void) vrFilter_free LDAP_P(( ValuesReturnFilter *f ));
498 LDAP_SLAPD_F (void) vrFilter2bv LDAP_P(( ValuesReturnFilter *f, struct berval *fstr ));
499
500 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
501 LDAP_SLAPD_F (int) filter_escape_value LDAP_P(( struct berval *in, 
502         struct berval *out ));
503
504 /*
505  * filterentry.c
506  */
507
508 LDAP_SLAPD_F (int) test_filter LDAP_P(( Operation *op, Entry *e, Filter *f ));
509
510 /*
511  * globals.c
512  */
513
514 LDAP_SLAPD_V( const struct berval ) slap_empty_bv;
515 LDAP_SLAPD_V( const struct berval ) slap_unknown_bv;
516
517 /*
518  * index.c
519  */
520 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
521
522 /*
523  * init.c
524  */
525 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
526 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
527 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
528 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
529
530 LDAP_SLAPD_V (char **)  slap_known_controls;
531
532 /*
533  * kerberos.c
534  */
535 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
536 LDAP_SLAPD_V (char *)   ldap_srvtab;
537 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
538 #endif
539
540 /*
541  * limits.c
542  */
543 LDAP_SLAPD_F (int) get_limits LDAP_P((
544         Backend *be, struct berval *ndn,
545         struct slap_limits_set **limit ));
546 LDAP_SLAPD_F (int) parse_limits LDAP_P((
547         Backend *be, const char *fname, int lineno,
548         int argc, char **argv ));
549 LDAP_SLAPD_F (int) parse_limit LDAP_P(( const char *arg, 
550         struct slap_limits_set *limit ));
551
552 /*
553  * lock.c
554  */
555 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
556         const char *type, FILE **lfp ));
557 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
558
559 /*
560  * matchedValues.c
561  */
562 LDAP_SLAPD_F (int) filter_matched_values( 
563         Operation       *op,
564         Attribute       *a,
565         char            ***e_flags );
566
567 /*
568  * modrdn.c
569  */
570 LDAP_SLAPD_F (int) slap_modrdn2mods(
571         Operation       *op,
572         SlapReply       *rs,
573         Entry           *e,
574         LDAPRDN         *oldrdn,
575         LDAPRDN         *newrdn,
576         Modifications   **pmod );
577
578 /*
579  * modify.c
580  */
581 LDAP_SLAPD_F( int ) slap_mods_check(
582         Modifications *ml,
583         int update,
584         const char **text,
585         char *textbuf, size_t textlen );
586
587 LDAP_SLAPD_F( int ) slap_mods_opattrs(
588         Operation *op,
589         Modifications *mods,
590         Modifications **modlist,
591         const char **text,
592         char *textbuf, size_t textlen );
593
594 /*
595  * mods.c
596  */
597 LDAP_SLAPD_F( int ) modify_check_duplicates(
598         AttributeDescription *ad, MatchingRule *mr, 
599         BerVarray vals, BerVarray mods, int permissive, 
600         const char **text, char *textbuf, size_t textlen );
601 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
602         Modification *mod,
603         int permissive,
604         const char **text, char *textbuf, size_t textlen );
605 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
606         Modification *mod,
607         int permissive,
608         const char **text, char *textbuf, size_t textlen );
609 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
610         Modification *mod,
611         int permissive,
612         const char **text, char *textbuf, size_t textlen );
613
614 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
615 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
616 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
617
618 /*
619  * module.c
620  */
621 #ifdef SLAPD_MODULES
622
623 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
624 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
625
626 LDAP_SLAPD_F (int) load_null_module(
627         const void *module, const char *file_name);
628 LDAP_SLAPD_F (int) load_extop_module(
629         const void *module, const char *file_name);
630
631 LDAP_SLAPD_F (int) module_load LDAP_P((
632         const char* file_name,
633         int argc, char *argv[] ));
634 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
635
636 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
637         const void *module, const char *name));
638
639 #endif /* SLAPD_MODULES */
640
641 /* mr.c */
642 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
643 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
644 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
645         slap_mrule_defs_rec *def,
646         MatchingRule * associated,
647         const char **err ));
648 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
649
650 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
651         slap_mrule_defs_rec *def ));
652
653 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
654 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
655
656 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
657 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
658
659 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
660         AttributeType *at );
661
662 /*
663  * mra.c
664  */
665 LDAP_SLAPD_F (int) get_mra LDAP_P((
666         BerElement *ber,
667         MatchingRuleAssertion **mra,
668         const char **text ));
669 LDAP_SLAPD_F (void) mra_free LDAP_P((
670         MatchingRuleAssertion *mra,
671         int freeit ));
672
673 /* oc.c */
674 LDAP_SLAPD_F (int) oc_add LDAP_P((
675         LDAPObjectClass *oc,
676         int user,
677         const char **err));
678 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
679
680 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
681         const char *ocname));
682 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
683         struct berval *ocname));
684 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
685         ObjectClass *sup,
686         ObjectClass *sub ));
687
688 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
689         Entry *, ObjectClass *oc, int set_flags ));
690 #define is_entry_alias(e)               \
691         (((e)->e_ocflags & SLAP_OC__END) \
692          ? (((e)->e_ocflags & SLAP_OC_ALIAS) != 0) \
693          : is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
694 #define is_entry_referral(e)    \
695         (((e)->e_ocflags & SLAP_OC__END) \
696          ? (((e)->e_ocflags & SLAP_OC_REFERRAL) != 0) \
697          : is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
698 #define is_entry_subentry(e)    \
699         (((e)->e_ocflags & SLAP_OC__END) \
700          ? (((e)->e_ocflags & SLAP_OC_SUBENTRY) != 0) \
701          : is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
702 #define is_entry_collectiveAttributeSubentry(e) \
703         (((e)->e_ocflags & SLAP_OC__END) \
704          ? (((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) != 0) \
705          : is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
706 #define is_entry_dynamicObject(e)       \
707         (((e)->e_ocflags & SLAP_OC__END) \
708          ? (((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) != 0) \
709          : is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
710
711 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
712
713 /*
714  * oidm.c
715  */
716 LDAP_SLAPD_F(char *) oidm_find(char *oid);
717 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
718 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
719         const char *fname, int lineno, int argc, char **argv ));
720
721 /*
722  * operation.c
723  */
724 LDAP_SLAPD_F (void) slap_op_init LDAP_P(( void ));
725 LDAP_SLAPD_F (void) slap_op_destroy LDAP_P(( void ));
726 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
727 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
728         BerElement *ber, ber_int_t msgid,
729         ber_tag_t tag, ber_int_t id ));
730
731 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
732 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
733 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
734
735 /*
736  * operational.c
737  */
738 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
739 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
740
741 /*
742  * passwd.c
743  */
744 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
745
746 LDAP_SLAPD_F (int) slap_passwd_check(
747         Connection                      *conn,
748         Attribute                       *attr,
749         struct berval           *cred );
750
751 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
752
753 LDAP_SLAPD_F (void) slap_passwd_hash(
754         struct berval           *cred,
755         struct berval           *hash );
756
757 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
758         struct berval           *cred );
759
760 LDAP_SLAPD_F (int) slap_passwd_parse(
761         struct berval *reqdata,
762         struct berval *id,
763         struct berval *oldpass,
764         struct berval *newpass,
765         const char **text );
766
767 /*
768  * phonetic.c
769  */
770 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
771
772 /*
773  * referral.c
774  */
775 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
776         const char *url ));
777
778 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
779         Operation *op, Entry *e ));
780
781 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
782         BerVarray refs,
783         struct berval *base,
784         struct berval *target,
785         int scope ));
786
787 /*
788  * repl.c
789  */
790 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
791         const char *host ));
792 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
793         int nr, const char *suffix ));
794 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
795         int nr, char *attrs, int exclude ));
796 LDAP_SLAPD_F (void) replog LDAP_P(( Operation *op ));
797
798 /*
799  * result.c
800  */
801 LDAP_SLAPD_F (void) slap_send_ldap_result LDAP_P(( Operation *op, SlapReply *rs ));
802 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P(( Operation *op, SlapReply *rs ));
803 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P(( Operation *op, SlapReply *rs ));
804 LDAP_SLAPD_F (void) slap_send_ldap_extended LDAP_P(( Operation *op, SlapReply *rs ));
805 LDAP_SLAPD_F (void) slap_send_ldap_intermediate_resp LDAP_P(( Operation *op, SlapReply *rs ));
806 LDAP_SLAPD_F (void) slap_send_search_result LDAP_P(( Operation *op, SlapReply *rs ));
807 LDAP_SLAPD_F (int) slap_send_search_reference LDAP_P(( Operation *op, SlapReply *rs ));
808 LDAP_SLAPD_F (int) slap_send_search_entry LDAP_P(( Operation *op, SlapReply *rs ));
809
810 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
811         int *code, char **matched, char **info ));
812
813 /*
814  * root_dse.c
815  */
816 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
817         Connection *conn,
818         Entry **e,
819         const char **text ));
820
821 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
822         const char *file));
823
824 /*
825  * sasl.c
826  */
827 LDAP_SLAPD_F (int) slap_sasl_init(void);
828 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
829 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
830
831 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c );
832 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
833
834 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
835         slap_ssf_t ssf, /* relative strength of external security */
836         const char *authid );   /* asserted authenication id */
837
838 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
839 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
840
841 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P(( Operation *op, SlapReply *rs ));
842
843 LDAP_SLAPD_F (int) slap_sasl_setpass(
844         Operation       *op,
845         SlapReply       *rs );
846
847 LDAP_SLAPD_F (int) slap_sasl_config(
848         int cargc,
849         char **cargv,
850         char *line,
851         const char *fname,
852         int lineno );
853
854 LDAP_SLAPD_F (int) slap_sasl_getdn( Connection *conn,
855         char *id, int len,
856         char *user_realm, struct berval *dn, int flags );
857
858 /*
859  * saslauthz.c
860  */
861 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
862         Connection *conn,
863         struct berval *saslname,
864         struct berval *dn ));
865 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
866         Connection *conn,
867         struct berval *authcid,
868         struct berval *authzid ));
869 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
870         const char *match, const char *replace ));
871 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
872
873
874 /*
875  * schema.c
876  */
877 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
878
879 /*
880  * schema_check.c
881  */
882 LDAP_SLAPD_F( int ) oc_check_allowed(
883         AttributeType *type,
884         BerVarray oclist,
885         ObjectClass *sc );
886
887 LDAP_SLAPD_F( int ) structural_class(
888         BerVarray ocs,
889         struct berval *scbv,
890         ObjectClass **sc,
891         const char **text,
892         char *textbuf, size_t textlen );
893
894 LDAP_SLAPD_F( int ) entry_schema_check(
895         Backend *be, Entry *e, Attribute *attrs,
896         const char** text,
897         char *textbuf, size_t textlen );
898
899 LDAP_SLAPD_F( int ) mods_structural_class(
900         Modifications *mods,
901         struct berval *oc,
902         const char** text,
903         char *textbuf, size_t textlen );
904
905 /*
906  * schema_init.c
907  */
908 LDAP_SLAPD_V( int ) schema_init_done;
909 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
910 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
911
912 LDAP_SLAPD_F( int ) octetStringIndexer(
913         slap_mask_t use,
914         slap_mask_t flags,
915         Syntax *syntax,
916         MatchingRule *mr,
917         struct berval *prefix,
918         BerVarray values,
919         BerVarray *keysp );
920
921 LDAP_SLAPD_F( int ) octetStringFilter(
922         slap_mask_t use,
923         slap_mask_t flags,
924         Syntax *syntax,
925         MatchingRule *mr,
926         struct berval *prefix,
927         void * assertValue,
928         BerVarray *keysp );
929
930 /*
931  * schema_prep.c
932  */
933 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
934 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
935 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
936
937 /*
938  * schemaparse.c
939  */
940 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
941
942 LDAP_SLAPD_F (int) parse_cr LDAP_P((
943         const char *fname, int lineno, char *line, char **argv ));
944 LDAP_SLAPD_F (int) parse_oc LDAP_P((
945         const char *fname, int lineno, char *line, char **argv ));
946 LDAP_SLAPD_F (int) parse_at LDAP_P((
947         const char *fname, int lineno, char *line, char **argv ));
948 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
949 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
950         char delim ));
951
952 /*
953  * starttls.c
954  */
955 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
956
957 /*
958  * str2filter.c
959  */
960 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
961
962 /* syntax.c */
963 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
964         const char *synname ));
965 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
966         const char *syndesc, int *slen ));
967 LDAP_SLAPD_F (int) syn_add LDAP_P((
968         LDAPSyntax *syn,
969         slap_syntax_defs_rec *def,
970         const char **err ));
971 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
972
973 LDAP_SLAPD_F (int) register_syntax LDAP_P((
974         slap_syntax_defs_rec *def ));
975
976 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
977
978 /*
979  * user.c
980  */
981 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
982 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
983 #endif
984
985 /*
986  * value.c
987  */
988 LDAP_SLAPD_F (int) asserted_value_validate_normalize LDAP_P((
989         AttributeDescription *ad,
990         MatchingRule *mr,
991         unsigned usage,
992         struct berval *in,
993         struct berval *out,
994         const char ** text ));
995
996 LDAP_SLAPD_F (int) value_match LDAP_P((
997         int *match,
998         AttributeDescription *ad,
999         MatchingRule *mr,
1000         unsigned flags,
1001         struct berval *v1,
1002         void *v2,
1003         const char ** text ));
1004 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1005         AttributeDescription *ad,
1006         unsigned flags,
1007         BerVarray values,
1008         struct berval *value ));
1009
1010 LDAP_SLAPD_F (int) value_add LDAP_P((
1011         BerVarray *vals,
1012         BerVarray addvals ));
1013 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1014         BerVarray *vals,
1015         struct berval *addval ));
1016
1017 /*
1018  * Other...
1019  */
1020 LDAP_SLAPD_V(unsigned) num_subordinates;
1021
1022 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1023 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1024 LDAP_SLAPD_V (int)              slap_conn_max_pending;
1025 LDAP_SLAPD_V (int)              slap_conn_max_pending_auth;
1026
1027 LDAP_SLAPD_V (slap_mask_t)      global_restrictops;
1028 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1029 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1030 LDAP_SLAPD_V (slap_mask_t)      global_requires;
1031 LDAP_SLAPD_V (slap_ssf_set_t)   global_ssf_set;
1032
1033 LDAP_SLAPD_V (BerVarray)                default_referral;
1034 LDAP_SLAPD_V (char *)           replogfile;
1035 LDAP_SLAPD_V (const char)       Versionstr[];
1036 LDAP_SLAPD_V (struct slap_limits_set)           deflimit;
1037
1038 LDAP_SLAPD_V (slap_access_t)    global_default_access;
1039 LDAP_SLAPD_V (int)              global_gentlehup;
1040 LDAP_SLAPD_V (int)              global_idletimeout;
1041 LDAP_SLAPD_V (int)              global_schemacheck;
1042 LDAP_SLAPD_V (char *)   global_host;
1043 LDAP_SLAPD_V (char *)   global_realm;
1044 LDAP_SLAPD_V (char *)   default_passwd_hash;
1045 LDAP_SLAPD_V (int)              lber_debug;
1046 LDAP_SLAPD_V (int)              ldap_syslog;
1047 LDAP_SLAPD_V (struct berval)    default_search_base;
1048 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1049
1050 LDAP_SLAPD_V (struct berval)    global_schemadn;
1051 LDAP_SLAPD_V (struct berval)    global_schemandn;
1052
1053 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_sent_mutex;
1054 LDAP_SLAPD_V (unsigned long)            num_bytes_sent;
1055 LDAP_SLAPD_V (unsigned long)            num_pdu_sent;
1056 LDAP_SLAPD_V (unsigned long)            num_entries_sent;
1057 LDAP_SLAPD_V (unsigned long)            num_refs_sent;
1058
1059 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_ops_mutex;
1060 LDAP_SLAPD_V (unsigned long)            num_ops_completed;
1061 LDAP_SLAPD_V (unsigned long)            num_ops_initiated;
1062 #ifdef SLAPD_MONITOR
1063 LDAP_SLAPD_V (unsigned long)            num_ops_completed_[SLAP_OP_LAST];
1064 LDAP_SLAPD_V (unsigned long)            num_ops_initiated_[SLAP_OP_LAST];
1065 #endif /* SLAPD_MONITOR */
1066
1067 LDAP_SLAPD_V (char *)           slapd_pid_file;
1068 LDAP_SLAPD_V (char *)           slapd_args_file;
1069 LDAP_SLAPD_V (time_t)           starttime;
1070
1071 /* use time(3) -- no mutex */
1072 #define slap_get_time() time( NULL )
1073
1074 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1075 LDAP_SLAPD_V (int)                      connection_pool_max;
1076
1077 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1078 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1079
1080 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1081 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1082 #endif
1083 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1084
1085 LDAP_SLAPD_V (AccessControl *) global_acl;
1086
1087 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1088
1089 LDAP_SLAPD_V (int)              use_reverse_lookup;
1090
1091 LDAP_SLAPD_V (struct berval)    AllUser;
1092 LDAP_SLAPD_V (struct berval)    AllOper;
1093 LDAP_SLAPD_V (struct berval)    NoAttrs;
1094
1095 /*
1096  * operations
1097  */
1098 LDAP_SLAPD_F (int) do_abandon LDAP_P((Operation *op, SlapReply *rs));
1099 LDAP_SLAPD_F (int) do_add LDAP_P((Operation *op, SlapReply *rs));
1100 LDAP_SLAPD_F (int) do_bind LDAP_P((Operation *op, SlapReply *rs));
1101 LDAP_SLAPD_F (int) do_compare LDAP_P((Operation *op, SlapReply *rs));
1102 LDAP_SLAPD_F (int) do_delete LDAP_P((Operation *op, SlapReply *rs));
1103 LDAP_SLAPD_F (int) do_modify LDAP_P((Operation *op, SlapReply *rs));
1104 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Operation *op, SlapReply *rs));
1105 LDAP_SLAPD_F (int) do_search LDAP_P((Operation *op, SlapReply *rs));
1106 LDAP_SLAPD_F (int) do_unbind LDAP_P((Operation *op, SlapReply *rs));
1107 LDAP_SLAPD_F (int) do_extended LDAP_P((Operation *op, SlapReply *rs));
1108
1109 LDAP_END_DECL
1110
1111 #endif /* PROTO_SLAP_H */
1112