]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/ch.h
Backport from Bacula Enterprise
[bacula/bacula] / bacula / src / ch.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2015 Kern Sibbald
5    Copyright (C) 2000-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  * Compressed stream header struct
22  *
23  *  Laurent Papier
24  *
25  */
26
27 #ifndef __CH_H
28 #define __CH_H 1
29
30 /*
31  * Compression algorithm signature. 4 letters as a 32bits integer
32  */
33 #define COMPRESS_NONE  0x4e4f4e45  /* used for incompressible block */
34 #define COMPRESS_GZIP  0x475a4950
35 #define COMPRESS_LZO1X 0x4c5a4f58
36
37 /*
38  * Compression header version
39  */
40 #define COMP_HEAD_VERSION 0x1
41
42 /* Compressed data stream header */
43 typedef struct {
44    uint32_t magic;      /* compression algo used in this compressed data stream */
45    uint16_t level;      /* compression level used */
46    uint16_t version;    /* for futur evolution */
47    uint32_t size;       /* compressed size of the original data */
48 } comp_stream_header;
49
50 #endif /* __CH_H */