1 /* 2 Bacula(R) - The Network Backup Solution 3 4 Copyright (C) 2000-2020 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 * File types 21 * 22 * Kern Sibbald MMI 23 * 24 * Extracted from findlib/find.h Nov 2010 25 */ 26 27 #ifndef __BFILEOPTS_H 28 #define __BFILEOPTS_H 29 30 /* 31 * Options saved int "options" of the include/exclude lists. 32 * They are directly jammed ito "flag" of ff packet 33 */ 34 #define FO_PORTABLE_DATA (1<<0) /* Data is portable (Not used) */ 35 #define FO_MD5 (1<<1) /* Do MD5 checksum */ 36 #define FO_COMPRESS (1<<2) /* Do compression */ 37 #define FO_NO_RECURSION (1<<3) /* no recursion in directories */ 38 #define FO_MULTIFS (1<<4) /* multiple file systems */ 39 #define FO_SPARSE (1<<5) /* do sparse file checking */ 40 #define FO_IF_NEWER (1<<6) /* replace if newer */ 41 #define FO_NOREPLACE (1<<7) /* never replace */ 42 #define FO_READFIFO (1<<8) /* read data from fifo */ 43 #define FO_SHA1 (1<<9) /* Do SHA1 checksum */ 44 #define FO_PORTABLE (1<<10) /* Use portable data format -- no BackupWrite */ 45 #define FO_MTIMEONLY (1<<11) /* Use mtime rather than mtime & ctime */ 46 #define FO_KEEPATIME (1<<12) /* Reset access time */ 47 #define FO_EXCLUDE (1<<13) /* Exclude file */ 48 #define FO_ACL (1<<14) /* Backup ACLs */ 49 #define FO_NO_HARDLINK (1<<15) /* don't handle hard links */ 50 #define FO_IGNORECASE (1<<16) /* Ignore file name case */ 51 #define FO_HFSPLUS (1<<17) /* Resource forks and Finder Info */ 52 #define FO_WIN32DECOMP (1<<18) /* Use BackupRead decomposition */ 53 #define FO_SHA256 (1<<19) /* Do SHA256 checksum */ 54 #define FO_SHA512 (1<<20) /* Do SHA512 checksum */ 55 #define FO_ENCRYPT (1<<21) /* Encrypt data stream */ 56 #define FO_NOATIME (1<<22) /* Use O_NOATIME to prevent atime change */ 57 #define FO_ENHANCEDWILD (1<<23) /* Enhanced wild card processing */ 58 #define FO_CHKCHANGES (1<<24) /* Check if file have been modified during backup */ 59 #define FO_STRIPPATH (1<<25) /* Check for stripping path */ 60 #define FO_HONOR_NODUMP (1<<26) /* honor NODUMP flag */ 61 #define FO_XATTR (1<<27) /* Backup Extended Attributes */ 62 #define FO_DELTA (1<<28) /* Delta data -- i.e. all copies returned on restore */ 63 #define FO_PLUGIN (1<<29) /* Plugin data stream -- return to plugin on restore */ 64 #define FO_OFFSETS (1<<30) /* Keep I/O file offsets */ 65 66 #endif /* __BFILEOPTSS_H */ 67