]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/ch.h
Backport from BEE
[bacula/bacula] / bacula / src / ch.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2014 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from many
7    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    Bacula® is a registered trademark of Kern Sibbald.
15 */
16 /**
17  * Compressed stream header struct
18  *
19  *  Laurent Papier
20  *
21  */
22
23 #ifndef __CH_H
24 #define __CH_H 1
25
26 /*
27  * Compression algorithm signature. 4 letters as a 32bits integer
28  */
29 #define COMPRESS_NONE  0x4e4f4e45  /* used for incompressible block */
30 #define COMPRESS_GZIP  0x475a4950
31 #define COMPRESS_LZO1X 0x4c5a4f58
32
33 /*
34  * Compression header version
35  */
36 #define COMP_HEAD_VERSION 0x1
37
38 /* Compressed data stream header */
39 typedef struct {
40    uint32_t magic;      /* compression algo used in this compressed data stream */
41    uint16_t level;      /* compression level used */
42    uint16_t version;    /* for futur evolution */
43    uint32_t size;       /* compressed size of the original data */
44 } comp_stream_header;
45
46 #endif /* __CH_H */