]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/fileopts.h
0dee79272fbdec7699d23da0edae2a8aa9e50c87
[bacula/bacula] / bacula / src / fileopts.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2015 Kern Sibbald
5    Copyright (C) 2001-2014 Free Software Foundation Europe e.V.
6
7    The original author of Bacula is Kern Sibbald, with contributions
8    from many others, a complete list can be found in the file AUTHORS.
9
10    You may use this file and others of this release according to the
11    license defined in the LICENSE file, which includes the Affero General
12    Public License, v3.0 ("AGPLv3") and some additional permissions and
13    terms pursuant to its AGPLv3 Section 7.
14
15    This notice must be preserved when any source code is 
16    conveyed and/or propagated.
17
18    Bacula(R) is a registered trademark of Kern Sibbald.
19 */
20 /*
21  * File types 
22  *
23  *     Kern Sibbald MMI
24  *
25  *  Extracted from findlib/find.h Nov 2010
26  *
27  */
28
29 #ifndef __BFILEOPTS_H
30 #define __BFILEOPTS_H
31
32 /*  
33  * Options saved int "options" of the include/exclude lists.
34  * They are directly jammed ito  "flag" of ff packet
35  */
36 #define FO_PORTABLE_DATA (1<<0)       /* Data is portable */
37 #define FO_MD5           (1<<1)       /* Do MD5 checksum */
38 #define FO_COMPRESS      (1<<2)       /* Do compression */
39 #define FO_NO_RECURSION  (1<<3)       /* no recursion in directories */
40 #define FO_MULTIFS       (1<<4)       /* multiple file systems */
41 #define FO_SPARSE        (1<<5)       /* do sparse file checking */
42 #define FO_IF_NEWER      (1<<6)       /* replace if newer */
43 #define FO_NOREPLACE     (1<<7)       /* never replace */
44 #define FO_READFIFO      (1<<8)       /* read data from fifo */
45 #define FO_SHA1          (1<<9)       /* Do SHA1 checksum */
46 #define FO_PORTABLE      (1<<10)      /* Use portable data format -- no BackupWrite */
47 #define FO_MTIMEONLY     (1<<11)      /* Use mtime rather than mtime & ctime */
48 #define FO_KEEPATIME     (1<<12)      /* Reset access time */
49 #define FO_EXCLUDE       (1<<13)      /* Exclude file */
50 #define FO_ACL           (1<<14)      /* Backup ACLs */
51 #define FO_NO_HARDLINK   (1<<15)      /* don't handle hard links */
52 #define FO_IGNORECASE    (1<<16)      /* Ignore file name case */
53 #define FO_HFSPLUS       (1<<17)      /* Resource forks and Finder Info */
54 #define FO_WIN32DECOMP   (1<<18)      /* Use BackupRead decomposition */
55 #define FO_SHA256        (1<<19)      /* Do SHA256 checksum */
56 #define FO_SHA512        (1<<20)      /* Do SHA512 checksum */
57 #define FO_ENCRYPT       (1<<21)      /* Encrypt data stream */
58 #define FO_NOATIME       (1<<22)      /* Use O_NOATIME to prevent atime change */
59 #define FO_ENHANCEDWILD  (1<<23)      /* Enhanced wild card processing */
60 #define FO_CHKCHANGES    (1<<24)      /* Check if file have been modified during backup */
61 #define FO_STRIPPATH     (1<<25)      /* Check for stripping path */
62 #define FO_HONOR_NODUMP  (1<<26)      /* honor NODUMP flag */
63 #define FO_XATTR         (1<<27)      /* Backup Extended Attributes */
64 #define FO_DELTA         (1<<28)      /* Delta data -- i.e. all copies returned on restore */
65 #define FO_PLUGIN        (1<<29)      /* Plugin data stream -- return to plugin on restore */
66 #define FO_OFFSETS       (1<<30)      /* Keep I/O file offsets */
67
68 #endif /* __BFILEOPTSS_H */