]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/filed.h
0ef70ac6bcbcc0d457e863ef82b4e722a4c00ea6
[bacula/bacula] / bacula / src / filed / filed.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2017 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /*
20  * Bacula File Daemon specific configuration and defines
21  *
22  *     Kern Sibbald, Jan MMI
23  */
24
25 //#define TEST_WORKER
26 #ifdef  TEST_WORKER
27 #define ERROR_BUFFER_OVERFLOW 1
28 #define ERROR_SUCCESS 0
29 #endif
30
31 /* acl errors to report per job. */
32 #define ACL_MAX_ERROR_PRINT_PER_JOB   25
33
34 /* xattr errors to report per job. */
35 #define XATTR_MAX_ERROR_PRINT_PER_JOB 25
36
37 #define FILE_DAEMON 1
38 #include  "lib/htable.h"
39 #include  "filed_conf.h"
40 #include  "fd_plugins.h"
41 #include  "fd_snapshot.h"
42 #include  "findlib/find.h"
43 #include  "xacl.h"
44 #include  "jcr.h"
45 #include  "protos.h"                   /* file daemon prototypes */
46 #include  "lib/runscript.h"
47 #include  "lib/breg.h"
48 #ifdef HAVE_LIBZ
49 #include <zlib.h>                     /* compression headers */
50 #else
51 #define uLongf uint32_t
52 #endif
53 #ifdef HAVE_LZO
54 #include <lzo/lzoconf.h>
55 #include <lzo/lzo1x.h>
56 #endif
57
58 extern CLIENT *me;                    /* "Global" Client resource */
59 extern bool win32decomp;              /* Use decomposition of BackupRead data */
60 extern bool no_win32_write_errors;    /* Ignore certain errors */
61
62 void terminate_filed(int sig);
63
64 struct s_cmds {
65    const char *cmd;
66    int (*func)(JCR *);
67    int access; /* specify if monitors/restricted have access to this function */
68 };
69
70 void allow_os_suspensions();
71 void prevent_os_suspensions();