]> git.sur5r.net Git - openldap/blob - servers/slurpd/proto-slurp.h
Don't build generic_filter dynamically, it's a simple static.
[openldap] / servers / slurpd / proto-slurp.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 #ifndef _PROTO_SLURP
7 #define _PROTO_SLURP
8
9 #include <ldap_cdefs.h>
10
11 struct globals;
12
13 /* admin.c */
14 RETSIGTYPE do_admin     LDAP_P((int sig));
15
16 /* args.c */
17 int doargs      LDAP_P((int argc, char **argv, struct globals *g));
18
19 /* ch_malloc.c */
20 #ifdef CSRIMALLOC
21 #define ch_malloc malloc
22 #define ch_realloc realloc
23 #define ch_calloc calloc
24 #define ch_free free
25 #else
26 void *ch_malloc LDAP_P((ber_len_t size));
27 void *ch_realloc        LDAP_P((void *block, ber_len_t size));
28 void *ch_calloc LDAP_P((ber_len_t nelem, ber_len_t size));
29 void ch_free    LDAP_P((void *p));
30 #endif
31
32 /* config.c */
33 int slurpd_read_config  LDAP_P((char *fname));
34
35 /* ch_malloc.c */
36 void ch_free LDAP_P(( void *p ));
37
38 /* fm.c */
39 void *fm        LDAP_P((void *arg));
40 RETSIGTYPE do_nothing   LDAP_P((int i));
41 RETSIGTYPE slurp_set_shutdown LDAP_P((int));
42
43 /* globals.c */
44 extern struct globals *sglob;
45 extern int ldap_syslog;
46 extern int ldap_syslog_level;
47 extern int ldap_debug;
48 extern struct globals *init_globals     LDAP_P((void));
49
50 /* ldap_op.c */
51 int do_ldap     LDAP_P((Ri *ri, Re *re, char **errmsg));
52
53 /* lock.c */
54 FILE *lock_fopen        LDAP_P((const char *fname, const char *type, FILE **lfp));
55 int lock_fclose LDAP_P((FILE *fp, FILE *lfp));
56 int acquire_lock        LDAP_P((const char *file, FILE **rfp, FILE **lfp));
57 int relinquish_lock     LDAP_P((const char *file, FILE *rfp, FILE *lfp));
58
59 /* reject.c */
60 void write_reject       LDAP_P((Ri *ri, Re *re, int lderr, char *errmsg));
61
62 /* replica.c */
63 int start_replica_thread        LDAP_P((Ri *ri));
64
65 /* replog.c */
66 int copy_replog LDAP_P((char *src, char *dst));
67 int file_nonempty       LDAP_P((char *filename));
68
69 /* sanity.c */
70 int sanity      LDAP_P((void));
71
72 /* st.c */
73 int St_init     LDAP_P((St **st));
74
75 /* tsleep.c */
76 int tsleep      LDAP_P((time_t interval));
77 #if defined( HAVE_LWP )
78 void start_lwp_scheduler LDAP_P(( void ));
79 #endif
80
81 #endif /* _PROTO_SLURP */