]> git.sur5r.net Git - openldap/blob - servers/slapd/proto-slap.h
7e9acb5d73b405c1be97446c91a7149327b5da86
[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 /*
487  * define to honor hasSubordinates operational attribute in search filters
488  */
489 #undef SLAP_X_FILTER_HASSUBORDINATES
490
491 #ifdef SLAP_X_FILTER_HASSUBORDINATES
492 LDAP_SLAPD_F (int) filter_has_subordinates LDAP_P(( Filter *filter ));
493 #endif /* SLAP_X_FILTER_HASSUBORDINATES */
494
495 /*
496  * filterentry.c
497  */
498
499 LDAP_SLAPD_F (int) test_filter LDAP_P((
500         Backend *be, Connection *conn, Operation *op,
501         Entry *e, Filter *f ));
502
503 /*
504  * index.c
505  */
506 LDAP_SLAPD_F (int) slap_str2index LDAP_P(( const char *str, slap_mask_t *idx ));
507
508 /*
509  * init.c
510  */
511 LDAP_SLAPD_F (int)      slap_init LDAP_P((int mode, const char* name));
512 LDAP_SLAPD_F (int)      slap_startup LDAP_P(( Backend *be ));
513 LDAP_SLAPD_F (int)      slap_shutdown LDAP_P(( Backend *be ));
514 LDAP_SLAPD_F (int)      slap_destroy LDAP_P((void));
515
516 LDAP_SLAPD_V (char *)   slap_known_controls[];
517
518 /*
519  * kerberos.c
520  */
521 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
522 LDAP_SLAPD_V (char *)   ldap_srvtab;
523 LDAP_SLAPD_V (int)      krbv4_ldap_auth();
524 #endif
525
526 /*
527  * limits.c
528  */
529 LDAP_SLAPD_F (int) get_limits LDAP_P((
530         Backend *be, struct berval *ndn,
531         struct slap_limits_set **limit ));
532 LDAP_SLAPD_F (int) parse_limits LDAP_P((
533         Backend *be, const char *fname, int lineno,
534         int argc, char **argv ));
535 LDAP_SLAPD_F (int) parse_limit LDAP_P(( const char *arg, 
536         struct slap_limits_set *limit ));
537
538 /*
539  * lock.c
540  */
541 LDAP_SLAPD_F (FILE *) lock_fopen LDAP_P(( const char *fname,
542         const char *type, FILE **lfp ));
543 LDAP_SLAPD_F (int) lock_fclose LDAP_P(( FILE *fp, FILE *lfp ));
544
545 /*
546  * matchedValues.c
547  */
548 LDAP_SLAPD_F (int) filter_matched_values( 
549         Backend         *be,
550         Connection      *conn,
551         Operation       *op,
552         Attribute       *a,
553         char            ***e_flags );
554
555 /*
556  * modrdn.c
557  */
558 LDAP_SLAPD_F (int) slap_modrdn2mods(
559         Backend         *be,
560         Connection      *conn,
561         Operation       *op,
562         Entry           *e,
563         LDAPRDN         *oldrdn,
564         LDAPRDN         *newrdn,
565         int             deleteoldrdn,
566         Modifications   **pmod );
567
568 /*
569  * modify.c
570  */
571 LDAP_SLAPD_F( int ) slap_mods_check(
572         Modifications *ml,
573         int update,
574         const char **text,
575         char *textbuf, size_t textlen );
576
577 LDAP_SLAPD_F( int ) slap_mods_opattrs(
578         Backend *be,
579         Operation *op,
580         Modifications *mods,
581         Modifications **modlist,
582         const char **text,
583         char *textbuf, size_t textlen );
584
585 /*
586  * mods.c
587  */
588 LDAP_SLAPD_F( int ) modify_check_duplicates(
589         AttributeDescription *ad, MatchingRule *mr, 
590         BerVarray vals, BerVarray mods,
591         const char **text, char *textbuf, size_t textlen );
592 LDAP_SLAPD_F( int ) modify_add_values( Entry *e,
593         Modification *mod,
594         const char **text, char *textbuf, size_t textlen );
595 LDAP_SLAPD_F( int ) modify_delete_values( Entry *e,
596         Modification *mod,
597         const char **text, char *textbuf, size_t textlen );
598 LDAP_SLAPD_F( int ) modify_replace_values( Entry *e,
599         Modification *mod,
600         const char **text, char *textbuf, size_t textlen );
601
602 LDAP_SLAPD_F( void ) slap_mod_free( Modification *mod, int freeit );
603 LDAP_SLAPD_F( void ) slap_mods_free( Modifications *mods );
604 LDAP_SLAPD_F( void ) slap_modlist_free( LDAPModList *ml );
605
606 /*
607  * module.c
608  */
609 #ifdef SLAPD_MODULES
610
611 LDAP_SLAPD_F (int) module_init LDAP_P(( void ));
612 LDAP_SLAPD_F (int) module_kill LDAP_P(( void ));
613
614 LDAP_SLAPD_F (int) load_null_module(
615         const void *module, const char *file_name);
616 LDAP_SLAPD_F (int) load_extop_module(
617         const void *module, const char *file_name);
618
619 LDAP_SLAPD_F (int) module_load LDAP_P((
620         const char* file_name,
621         int argc, char *argv[] ));
622 LDAP_SLAPD_F (int) module_path LDAP_P(( const char* path ));
623
624 LDAP_SLAPD_F (void) *module_resolve LDAP_P((
625         const void *module, const char *name));
626
627 #endif /* SLAPD_MODULES */
628
629 /* mr.c */
630 LDAP_SLAPD_F (MatchingRule *) mr_bvfind LDAP_P((struct berval *mrname));
631 LDAP_SLAPD_F (MatchingRule *) mr_find LDAP_P((const char *mrname));
632 LDAP_SLAPD_F (int) mr_add LDAP_P(( LDAPMatchingRule *mr,
633         slap_mrule_defs_rec *def,
634         MatchingRule * associated,
635         const char **err ));
636 LDAP_SLAPD_F (void) mr_destroy LDAP_P(( void ));
637
638 LDAP_SLAPD_F (int) register_matching_rule LDAP_P((
639         slap_mrule_defs_rec *def ));
640
641 LDAP_SLAPD_F (void) mru_destroy LDAP_P(( void ));
642 LDAP_SLAPD_F (int) matching_rule_use_init LDAP_P(( void ));
643
644 LDAP_SLAPD_F (int) mr_schema_info( Entry *e );
645 LDAP_SLAPD_F (int) mru_schema_info( Entry *e );
646
647 LDAP_SLAPD_F (int) mr_usable_with_at( MatchingRule *mr,
648         AttributeType *at );
649
650 /*
651  * mra.c
652  */
653 LDAP_SLAPD_F (int) get_mra LDAP_P((
654         BerElement *ber,
655         MatchingRuleAssertion **mra,
656         const char **text ));
657 LDAP_SLAPD_F (void) mra_free LDAP_P((
658         MatchingRuleAssertion *mra,
659         int freeit ));
660
661 /* oc.c */
662 LDAP_SLAPD_F (int) oc_add LDAP_P((
663         LDAPObjectClass *oc,
664         int user,
665         const char **err));
666 LDAP_SLAPD_F (void) oc_destroy LDAP_P(( void ));
667
668 LDAP_SLAPD_F (ObjectClass *) oc_find LDAP_P((
669         const char *ocname));
670 LDAP_SLAPD_F (ObjectClass *) oc_bvfind LDAP_P((
671         struct berval *ocname));
672 LDAP_SLAPD_F (int) is_object_subclass LDAP_P((
673         ObjectClass *sup,
674         ObjectClass *sub ));
675
676 LDAP_SLAPD_F (int) is_entry_objectclass LDAP_P((
677         Entry *, ObjectClass *oc, int set_flags ));
678 #define is_entry_alias(e)               \
679         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_ALIAS) : \
680         is_entry_objectclass((e), slap_schema.si_oc_alias, 1))
681 #define is_entry_referral(e)    \
682         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_REFERRAL) : \
683         is_entry_objectclass((e), slap_schema.si_oc_referral, 1))
684 #define is_entry_subentry(e)    \
685         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_SUBENTRY) : \
686         is_entry_objectclass((e), slap_schema.si_oc_subentry, 1))
687 #define is_entry_collectiveAttributeSubentry(e) \
688         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_COLLECTIVEATTRIBUTESUBENTRY) : \
689         is_entry_objectclass((e), slap_schema.si_oc_collectiveAttributeSubentry, 1))
690 #define is_entry_dynamicObject(e)       \
691         (((e)->e_ocflags & SLAP_OC__END) ? ((e)->e_ocflags & SLAP_OC_DYNAMICOBJECT) : \
692         is_entry_objectclass((e), slap_schema.si_oc_dynamicObject, 1))
693
694 LDAP_SLAPD_F (int) oc_schema_info( Entry *e );
695
696 /*
697  * oidm.c
698  */
699 LDAP_SLAPD_F(char *) oidm_find(char *oid);
700 LDAP_SLAPD_F (void) oidm_destroy LDAP_P(( void ));
701 LDAP_SLAPD_F (int) parse_oidm LDAP_P((
702         const char *fname, int lineno, int argc, char **argv ));
703
704 /*
705  * operation.c
706  */
707 LDAP_SLAPD_F (void) slap_op_free LDAP_P(( Operation *op ));
708 LDAP_SLAPD_F (Operation *) slap_op_alloc LDAP_P((
709         BerElement *ber, ber_int_t msgid,
710         ber_tag_t tag, ber_int_t id ));
711
712 LDAP_SLAPD_F (int) slap_op_add LDAP_P(( Operation **olist, Operation *op ));
713 LDAP_SLAPD_F (int) slap_op_remove LDAP_P(( Operation **olist, Operation *op ));
714 LDAP_SLAPD_F (Operation *) slap_op_pop LDAP_P(( Operation **olist ));
715
716 /*
717  * operational.c
718  */
719 LDAP_SLAPD_F (Attribute *) slap_operational_subschemaSubentry( Backend *be );
720 LDAP_SLAPD_F (Attribute *) slap_operational_hasSubordinate( int has );
721
722 /*
723  * passwd.c
724  */
725 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) passwd_extop;
726
727 LDAP_SLAPD_F (int) slap_passwd_check(
728         Connection                      *conn,
729         Attribute                       *attr,
730         struct berval           *cred );
731
732 LDAP_SLAPD_F (void) slap_passwd_generate( struct berval * );
733
734 LDAP_SLAPD_F (void) slap_passwd_hash(
735         struct berval           *cred,
736         struct berval           *hash );
737
738 LDAP_SLAPD_F (struct berval *) slap_passwd_return(
739         struct berval           *cred );
740
741 LDAP_SLAPD_F (int) slap_passwd_parse(
742         struct berval *reqdata,
743         struct berval *id,
744         struct berval *oldpass,
745         struct berval *newpass,
746         const char **text );
747
748 /*
749  * phonetic.c
750  */
751 LDAP_SLAPD_F (char *) phonetic LDAP_P(( char *s ));
752
753 /*
754  * referral.c
755  */
756 LDAP_SLAPD_F (int) validate_global_referral LDAP_P((
757         const char *url ));
758
759 LDAP_SLAPD_F (BerVarray) get_entry_referrals LDAP_P((
760         Backend *be, Connection *conn, Operation *op, Entry *e ));
761
762 LDAP_SLAPD_F (BerVarray) referral_rewrite LDAP_P((
763         BerVarray refs,
764         struct berval *base,
765         struct berval *target,
766         int scope ));
767
768 /*
769  * repl.c
770  */
771 LDAP_SLAPD_F (int) add_replica_info LDAP_P(( Backend *be,
772         const char *host ));
773 LDAP_SLAPD_F (int) add_replica_suffix LDAP_P(( Backend *be,
774         int nr, const char *suffix ));
775 LDAP_SLAPD_F (int) add_replica_attrs LDAP_P(( Backend *be,
776         int nr, char *attrs, int exclude ));
777 LDAP_SLAPD_F (void) replog LDAP_P(( Backend *be, Operation *op,
778         struct berval *dn, struct berval *ndn, void *change ));
779
780 /*
781  * result.c
782  */
783 LDAP_SLAPD_F (void) send_ldap_result LDAP_P((
784         Connection *conn, Operation *op,
785         ber_int_t err, const char *matched, const char *text,
786         BerVarray refs,
787         LDAPControl **ctrls ));
788
789 LDAP_SLAPD_F (void) send_ldap_sasl LDAP_P((
790         Connection *conn, Operation *op,
791         ber_int_t err, const char *matched,
792         const char *text,
793         BerVarray refs,
794         LDAPControl **ctrls,
795         struct berval *cred ));
796
797 LDAP_SLAPD_F (void) send_ldap_disconnect LDAP_P((
798         Connection *conn, Operation *op,
799         ber_int_t err, const char *text ));
800
801 LDAP_SLAPD_F (void) send_ldap_extended LDAP_P((
802         Connection *conn, Operation *op,
803         ber_int_t err, const char *matched,
804         const char *text, BerVarray refs,
805         const char *rspoid, struct berval *rspdata,
806         LDAPControl **ctrls ));
807
808 LDAP_SLAPD_F (void) send_ldap_partial LDAP_P((
809         Connection *conn, Operation *op,
810         const char *rspoid, struct berval *rspdata,
811         LDAPControl **ctrls ));
812
813 LDAP_SLAPD_F (void) send_search_result LDAP_P((
814         Connection *conn, Operation *op,
815         ber_int_t err, const char *matched, const char *text,
816         BerVarray refs,
817         LDAPControl **ctrls,
818         int nentries ));
819
820 LDAP_SLAPD_F (int) send_search_reference LDAP_P((
821         Backend *be, Connection *conn, Operation *op,
822         Entry *e, BerVarray refs,
823         LDAPControl **ctrls,
824         BerVarray *v2refs ));
825
826 LDAP_SLAPD_F (int) send_search_entry LDAP_P((
827         Backend *be, Connection *conn, Operation *op,
828         Entry *e, AttributeName *attrs, int attrsonly,
829         LDAPControl **ctrls ));
830
831 LDAP_SLAPD_F (int) str2result LDAP_P(( char *s,
832         int *code, char **matched, char **info ));
833
834 /*
835  * root_dse.c
836  */
837 LDAP_SLAPD_F (int) root_dse_info LDAP_P((
838         Connection *conn,
839         Entry **e,
840         const char **text ));
841
842 LDAP_SLAPD_F (int) read_root_dse_file LDAP_P((
843         const char *file));
844
845 /*
846  * sasl.c
847  */
848 LDAP_SLAPD_F (int) slap_sasl_init(void);
849 LDAP_SLAPD_F (char *) slap_sasl_secprops( const char * );
850 LDAP_SLAPD_F (int) slap_sasl_destroy(void);
851
852 LDAP_SLAPD_F (int) slap_sasl_open( Connection *c );
853 LDAP_SLAPD_F (char **) slap_sasl_mechs( Connection *c );
854
855 LDAP_SLAPD_F (int) slap_sasl_external( Connection *c,
856         slap_ssf_t ssf, /* relative strength of external security */
857         const char *authid );   /* asserted authenication id */
858
859 LDAP_SLAPD_F (int) slap_sasl_reset( Connection *c );
860 LDAP_SLAPD_F (int) slap_sasl_close( Connection *c );
861
862 LDAP_SLAPD_F (int) slap_sasl_bind LDAP_P((
863         Connection *conn, Operation *op, 
864         struct berval *dn, struct berval *ndn,
865         struct berval *cred,
866         struct berval *edn, slap_ssf_t *ssf ));
867
868 LDAP_SLAPD_F (int) slap_sasl_setpass(
869         Connection      *conn,
870         Operation       *op,
871         const char      *reqoid,
872         struct berval   *reqdata,
873         char            **rspoid,
874         struct berval   **rspdata,
875         LDAPControl     *** rspctrls,
876         const char      **text );
877
878 LDAP_SLAPD_F (int) slap_sasl_config(
879         int cargc,
880         char **cargv,
881         char *line,
882         const char *fname,
883         int lineno );
884
885
886 /*
887  * saslauthz.c
888  */
889 LDAP_SLAPD_F (void) slap_sasl2dn LDAP_P((
890         Connection *conn,
891         struct berval *saslname,
892         struct berval *dn ));
893 LDAP_SLAPD_F (int) slap_sasl_authorized LDAP_P((
894         Connection *conn,
895         struct berval *authcid,
896         struct berval *authzid ));
897 LDAP_SLAPD_F (int) slap_sasl_regexp_config LDAP_P((
898         const char *match, const char *replace ));
899 LDAP_SLAPD_F (int) slap_sasl_setpolicy LDAP_P(( const char * ));
900 LDAP_SLAPD_F (slap_response) slap_cb_null_response;
901 LDAP_SLAPD_F (slap_sresult) slap_cb_null_sresult;
902
903
904 /*
905  * schema.c
906  */
907 LDAP_SLAPD_F (int) schema_info LDAP_P(( Entry **entry, const char **text ));
908
909 /*
910  * schema_check.c
911  */
912 LDAP_SLAPD_F( int ) oc_check_allowed(
913         AttributeType *type,
914         BerVarray oclist,
915         ObjectClass *sc );
916
917 LDAP_SLAPD_F( int ) structural_class(
918         BerVarray ocs,
919         struct berval *scbv,
920         ObjectClass **sc,
921         const char **text,
922         char *textbuf, size_t textlen );
923
924 LDAP_SLAPD_F( int ) entry_schema_check(
925         Backend *be, Entry *e, Attribute *attrs,
926         const char** text,
927         char *textbuf, size_t textlen );
928
929 LDAP_SLAPD_F( int ) mods_structural_class(
930         Modifications *mods,
931         struct berval *oc,
932         const char** text,
933         char *textbuf, size_t textlen );
934
935 /*
936  * schema_init.c
937  */
938 LDAP_SLAPD_V( int ) schema_init_done;
939 LDAP_SLAPD_F (int) slap_schema_init LDAP_P((void));
940 LDAP_SLAPD_F (void) schema_destroy LDAP_P(( void ));
941
942 LDAP_SLAPD_F( int ) octetStringIndexer(
943         slap_mask_t use,
944         slap_mask_t flags,
945         Syntax *syntax,
946         MatchingRule *mr,
947         struct berval *prefix,
948         BerVarray values,
949         BerVarray *keysp );
950
951 LDAP_SLAPD_F( int ) octetStringFilter(
952         slap_mask_t use,
953         slap_mask_t flags,
954         Syntax *syntax,
955         MatchingRule *mr,
956         struct berval *prefix,
957         void * assertValue,
958         BerVarray *keysp );
959
960 /*
961  * schema_prep.c
962  */
963 LDAP_SLAPD_V( struct slap_internal_schema ) slap_schema;
964 LDAP_SLAPD_F (int) slap_schema_load LDAP_P((void));
965 LDAP_SLAPD_F (int) slap_schema_check LDAP_P((void));
966
967 /*
968  * schemaparse.c
969  */
970 LDAP_SLAPD_F( int ) slap_valid_descr( const char * );
971
972 LDAP_SLAPD_F (int) parse_cr LDAP_P((
973         const char *fname, int lineno, char *line, char **argv ));
974 LDAP_SLAPD_F (int) parse_oc LDAP_P((
975         const char *fname, int lineno, char *line, char **argv ));
976 LDAP_SLAPD_F (int) parse_at LDAP_P((
977         const char *fname, int lineno, char *line, char **argv ));
978 LDAP_SLAPD_F (char *) scherr2str LDAP_P((int code)) LDAP_GCCATTR((const));
979 LDAP_SLAPD_F (int) dscompare LDAP_P(( const char *s1, const char *s2del,
980         char delim ));
981
982 /*
983  * starttls.c
984  */
985 LDAP_SLAPD_F (SLAP_EXTOP_MAIN_FN) starttls_extop;
986
987 /*
988  * str2filter.c
989  */
990 LDAP_SLAPD_F (Filter *) str2filter LDAP_P(( const char *str ));
991
992 /*
993  * suffixalias.c
994  */
995 LDAP_SLAPD_F (void) suffix_alias LDAP_P(( Backend *be, struct berval *ndn ));
996
997 /* syntax.c */
998 LDAP_SLAPD_F (Syntax *) syn_find LDAP_P((
999         const char *synname ));
1000 LDAP_SLAPD_F (Syntax *) syn_find_desc LDAP_P((
1001         const char *syndesc, int *slen ));
1002 LDAP_SLAPD_F (int) syn_add LDAP_P((
1003         LDAPSyntax *syn,
1004         slap_syntax_defs_rec *def,
1005         const char **err ));
1006 LDAP_SLAPD_F (void) syn_destroy LDAP_P(( void ));
1007
1008 LDAP_SLAPD_F (int) register_syntax LDAP_P((
1009         slap_syntax_defs_rec *def ));
1010
1011 LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
1012
1013 /*
1014  * user.c
1015  */
1016 #if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
1017 LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
1018 #endif
1019
1020 /*
1021  * value.c
1022  */
1023 LDAP_SLAPD_F (int) value_validate LDAP_P((
1024         MatchingRule *mr,
1025         struct berval *in,
1026         const char ** text ));
1027 LDAP_SLAPD_F (int) value_normalize LDAP_P((
1028         AttributeDescription *ad,
1029         unsigned usage,
1030         struct berval *in,
1031         struct berval *out,
1032         const char ** text ));
1033 LDAP_SLAPD_F (int) value_validate_normalize LDAP_P((
1034         AttributeDescription *ad,
1035         unsigned usage,
1036         struct berval *in,
1037         struct berval *out,
1038         const char ** text ));
1039 LDAP_SLAPD_F (int) value_match LDAP_P((
1040         int *match,
1041         AttributeDescription *ad,
1042         MatchingRule *mr,
1043         unsigned flags,
1044         struct berval *v1,
1045         void *v2,
1046         const char ** text ));
1047 #define value_find(ad,values,value) (value_find_ex((ad),0,(values),(value)))
1048 LDAP_SLAPD_F (int) value_find_ex LDAP_P((
1049         AttributeDescription *ad,
1050         unsigned flags,
1051         BerVarray values,
1052         struct berval *value ));
1053 LDAP_SLAPD_F (int) value_add LDAP_P((
1054         BerVarray *vals,
1055         BerVarray addvals ));
1056 LDAP_SLAPD_F (int) value_add_one LDAP_P((
1057         BerVarray *vals,
1058         struct berval *addval ));
1059
1060 /*
1061  * Other...
1062  */
1063 LDAP_SLAPD_V(unsigned) num_subordinates;
1064
1065 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming;
1066 LDAP_SLAPD_V (ber_len_t) sockbuf_max_incoming_auth;
1067
1068 LDAP_SLAPD_V (slap_mask_t)      global_restrictops;
1069 LDAP_SLAPD_V (slap_mask_t)      global_allows;
1070 LDAP_SLAPD_V (slap_mask_t)      global_disallows;
1071 LDAP_SLAPD_V (slap_mask_t)      global_requires;
1072 LDAP_SLAPD_V (slap_ssf_set_t)   global_ssf_set;
1073
1074 LDAP_SLAPD_V (BerVarray)                default_referral;
1075 LDAP_SLAPD_V (char *)           replogfile;
1076 LDAP_SLAPD_V (const char)       Versionstr[];
1077 LDAP_SLAPD_V (struct slap_limits_set)           deflimit;
1078
1079 LDAP_SLAPD_V (slap_access_t)    global_default_access;
1080 LDAP_SLAPD_V (int)              global_gentlehup;
1081 LDAP_SLAPD_V (int)              global_idletimeout;
1082 LDAP_SLAPD_V (int)              global_schemacheck;
1083 LDAP_SLAPD_V (char *)   global_host;
1084 LDAP_SLAPD_V (char *)   global_realm;
1085 LDAP_SLAPD_V (char *)   default_passwd_hash;
1086 LDAP_SLAPD_V (int)              lber_debug;
1087 LDAP_SLAPD_V (int)              ldap_syslog;
1088 LDAP_SLAPD_V (struct berval)    default_search_base;
1089 LDAP_SLAPD_V (struct berval)    default_search_nbase;
1090
1091 LDAP_SLAPD_V (struct berval)    global_schemadn;
1092 LDAP_SLAPD_V (struct berval)    global_schemandn;
1093
1094 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_sent_mutex;
1095 LDAP_SLAPD_V (unsigned long)            num_bytes_sent;
1096 LDAP_SLAPD_V (unsigned long)            num_pdu_sent;
1097 LDAP_SLAPD_V (unsigned long)            num_entries_sent;
1098 LDAP_SLAPD_V (unsigned long)            num_refs_sent;
1099
1100 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  num_ops_mutex;
1101 LDAP_SLAPD_V (unsigned long)            num_ops_completed;
1102 LDAP_SLAPD_V (unsigned long)            num_ops_initiated;
1103 #ifdef SLAPD_MONITOR
1104 LDAP_SLAPD_V (unsigned long)            num_ops_completed_[SLAP_OP_LAST];
1105 LDAP_SLAPD_V (unsigned long)            num_ops_initiated_[SLAP_OP_LAST];
1106 #endif /* SLAPD_MONITOR */
1107
1108 LDAP_SLAPD_V (char *)           slapd_pid_file;
1109 LDAP_SLAPD_V (char *)           slapd_args_file;
1110 LDAP_SLAPD_V (time_t)           starttime;
1111
1112 /* use time(3) -- no mutex */
1113 #define slap_get_time() time( NULL )
1114
1115 LDAP_SLAPD_V (ldap_pvt_thread_pool_t)   connection_pool;
1116 LDAP_SLAPD_V (int)                      connection_pool_max;
1117
1118 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  entry2str_mutex;
1119 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  replog_mutex;
1120
1121 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
1122 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  passwd_mutex;
1123 #endif
1124 LDAP_SLAPD_V (ldap_pvt_thread_mutex_t)  gmtime_mutex;
1125
1126 LDAP_SLAPD_V (AccessControl *) global_acl;
1127
1128 LDAP_SLAPD_V (ber_socket_t)     dtblsize;
1129
1130 LDAP_SLAPD_V (int)              use_reverse_lookup;
1131
1132 LDAP_SLAPD_V (struct berval)    AllUser;
1133 LDAP_SLAPD_V (struct berval)    AllOper;
1134 LDAP_SLAPD_V (struct berval)    NoAttrs;
1135
1136 /*
1137  * operations
1138  */
1139 LDAP_SLAPD_F (int) do_abandon LDAP_P((Connection *conn, Operation *op));
1140 LDAP_SLAPD_F (int) do_add LDAP_P((Connection *conn, Operation *op));
1141 LDAP_SLAPD_F (int) do_bind LDAP_P((Connection *conn, Operation *op));
1142 LDAP_SLAPD_F (int) do_compare LDAP_P((Connection *conn, Operation *op));
1143 LDAP_SLAPD_F (int) do_delete LDAP_P((Connection *conn, Operation *op));
1144 LDAP_SLAPD_F (int) do_modify LDAP_P((Connection *conn, Operation *op));
1145 LDAP_SLAPD_F (int) do_modrdn LDAP_P((Connection *conn, Operation *op));
1146 LDAP_SLAPD_F (int) do_search LDAP_P((Connection *conn, Operation *op));
1147 LDAP_SLAPD_F (int) do_unbind LDAP_P((Connection *conn, Operation *op));
1148 LDAP_SLAPD_F (int) do_extended LDAP_P((Connection *conn, Operation *op));
1149
1150 LDAP_END_DECL
1151
1152 #endif /* PROTO_SLAP_H */
1153