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