]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/protos.h
7fc99d14bfcbd2405f5066be97f974076ec4206a
[bacula/bacula] / bacula / src / lib / protos.h
1 /*
2  * Prototypes for lib directory of Bacula
3  *
4  *   Version $Id$
5  */
6 /*
7    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
8
9    This program is free software; you can redistribute it and/or
10    modify it under the terms of the GNU General Public License as
11    published by the Free Software Foundation; either version 2 of
12    the License, or (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17    General Public License for more details.
18
19    You should have received a copy of the GNU General Public
20    License along with this program; if not, write to the Free
21    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22    MA 02111-1307, USA.
23
24  */
25
26 /* base64.c */
27 void      base64_init            __PROTO((void));
28 int       to_base64              __PROTO((intmax_t value, char *where));
29 int       from_base64            __PROTO((intmax_t *value, char *where));
30 void      encode_stat            __PROTO((char *buf, struct stat *statp));
31 void      decode_stat            __PROTO((char *buf, struct stat *statp));
32 int       bin_to_base64          __PROTO((char *buf, char *bin, int len));
33
34 /* bmisc.c */
35 void     *b_malloc               (char *file, int line, size_t size);
36 #ifndef DEBUG
37 void     *bmalloc                (size_t size);
38 #endif
39 void     *brealloc               (void *buf, size_t size);
40 void     *bcalloc                (size_t size1, size_t size2);
41 int       bsnprintf              (char *str, size_t size, const  char  *format, ...);
42 int       bvsnprintf             (char *str, size_t size, const char  *format, va_list ap);
43 int       pool_sprintf           (char *pool_buf, char *fmt, ...);
44 void      create_pid_file        (char *dir, char *progname, int port);
45 int       delete_pid_file        (char *dir, char *progname, int port);
46
47 /* bnet.c */
48 int32_t    bnet_recv             __PROTO((BSOCK *bsock));
49 int        bnet_send             __PROTO((BSOCK *bsock));
50 int        bnet_fsend              (BSOCK *bs, char *fmt, ...);
51 int        bnet_set_buffer_size    (BSOCK *bs, uint32_t size, int rw);
52 int        bnet_sig                (BSOCK *bs, int sig);
53 BSOCK *    bnet_connect            (void *jcr, int retry_interval,
54                int max_retry_time, char *name, char *host, char *service, 
55                int port, int verbose);
56 int        bnet_wait_data         (BSOCK *bsock, int sec);
57 void       bnet_close            __PROTO((BSOCK *bsock));
58 BSOCK *    init_bsock            __PROTO((int sockfd, char *who, char *ip, int port));
59 BSOCK *    dup_bsock             __PROTO((BSOCK *bsock));
60 void       term_bsock            __PROTO((BSOCK *bsock));
61 char *     bnet_strerror         __PROTO((BSOCK *bsock));
62 char *     bnet_sig_to_ascii     __PROTO((BSOCK *bsock));
63 int        bnet_wait_data        __PROTO((BSOCK *bsock, int sec));
64
65
66 /* cram-md5.c */
67 int cram_md5_get_auth(BSOCK *bs, char *password);
68 int cram_md5_auth(BSOCK *bs, char *password);
69 void hmac_md5(uint8_t* text, int text_len, uint8_t*  key,
70               int key_len, uint8_t *hmac);
71
72 /* create_file.c */
73 int create_file(void *jcr, char *fname, char *ofile, char *lname,
74                        int type, struct stat *statp, int *ofd);
75 int set_statp(void *jcr, char *fname, char *ofile, char *lname, int type, 
76                        struct stat *statp);
77
78
79 /* crc32.c */
80 uint32_t bcrc32(uint8_t *buf, int len);
81
82 /* daemon.c */
83 void     daemon_start            __PROTO(());
84
85 /* lex.c */
86 LEX *     lex_close_file         __PROTO((LEX *lf));
87 LEX *     lex_open_file          __PROTO((LEX *lf, char *fname));
88 int       lex_get_char           __PROTO((LEX *lf));
89 void      lex_unget_char         __PROTO((LEX *lf));
90 char *    lex_tok_to_str         __PROTO((int token));
91 int       lex_get_token          __PROTO((LEX *lf));
92
93 /* makepath.c */
94 int make_path(
95            void *jcr,
96            const char *argpath,
97            int mode,
98            int parent_mode,
99            uid_t owner,
100            gid_t group,
101            int preserve_existing,
102            char *verbose_fmt_string);
103
104
105 /* message.c */
106 void       my_name_is            __PROTO((int argc, char *argv[], char *name));
107 void       init_msg              __PROTO((void *jcr, MSGS *msg));
108 void       term_msg              __PROTO((void));
109 void       close_msg             __PROTO((void *jcr));
110 void       add_msg_dest          __PROTO((MSGS *msg, int dest, int type, char *where, char *dest_code));
111 void       rem_msg_dest          __PROTO((MSGS *msg, int dest, int type, char *where));
112 void       Jmsg                  (void *jcr, int type, int level, char *fmt, ...);
113 void       dispatch_message      __PROTO((void *jcr, int type, int level, char *buf));
114 void       init_console_msg      __PROTO((char *wd));
115 void       free_msgs_res(MSGS *msgs);
116
117
118 /* bnet_server.c */
119 void       bnet_thread_server(int port, int max_clients, workq_t *client_wq, 
120                    void handle_client_request(void *bsock));
121 void             bnet_server             __PROTO((int port, void handle_client_request(BSOCK *bsock)));
122 int              net_connect             __PROTO((int port));
123 BSOCK *          bnet_bind               __PROTO((int port));
124 BSOCK *          bnet_accept             __PROTO((BSOCK *bsock, char *who));
125
126 /* signal.c */
127 void             init_signals             __PROTO((void terminate(int sig)));
128 void             init_stack_dump          (void);
129
130 /* util.c */
131 void             lcase                   __PROTO((char *str));
132 void             bash_spaces             __PROTO((char *str));
133 void             unbash_spaces           __PROTO((char *str));
134 void             strip_trailing_junk     __PROTO((char *str));
135 void             strip_trailing_slashes  __PROTO((char *dir));
136 int              skip_spaces             __PROTO((char **msg));
137 int              skip_nonspaces          __PROTO((char **msg));
138 int              fstrsch                 __PROTO((char *a, char *b));
139 char *           encode_time             __PROTO((time_t time, char *buf));
140 char *           encode_mode             __PROTO((mode_t mode, char *buf));
141 char *           edit_uint64_with_commas   __PROTO((uint64_t val, char *buf));
142 char *           add_commas              __PROTO((char *val, char *buf));
143 char *           edit_uint64             (uint64_t val, char *buf);
144 int              do_shell_expansion      (char *name);
145 int              is_a_number             (const char *num);
146 int              string_to_btime(char *str, btime_t *value);
147 char             *edit_btime(btime_t val, char *buf);
148
149
150 /*
151  *void           print_ls_output         __PROTO((char *fname, char *lname, int type, struct stat *statp));
152  */
153
154 /* watchdog.c */
155 int start_watchdog(void);
156 int stop_watchdog(void);