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