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