Home | History | Annotate | Download | only in zlib

Lines Matching defs:GZIP

18 /* define NO_GZIP when compiling if you want to disable gzip header and
20 the crc code when it is not needed. For shared libraries, gzip encoding
23 # define GZIP
55 #ifdef GZIP
56 # define GZIP_STATE 57 /* gzip header -> BUSY_STATE | EXTRA_STATE */
58 #define EXTRA_STATE 69 /* gzip extra block -> NAME_STATE */
59 #define NAME_STATE 73 /* gzip file name -> COMMENT_STATE */
60 #define COMMENT_STATE 91 /* gzip comment -> HCRC_STATE */
61 #define HCRC_STATE 103 /* gzip header CRC -> BUSY_STATE */
107 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */
108 gz_headerp gzhead; /* gzip header information to write */
232 * This is applicable only for zip (not gzip or zlib).