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