diff options
author | unknown <jimw@mysql.com> | 2005-08-09 10:22:48 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-08-09 10:22:48 -0700 |
commit | c0941e427888b43460c85e58ab91b423844bb679 (patch) | |
tree | 9b1ac253febefb83c1d2f4e1d369db3b53a16727 /zlib/inflate.h | |
parent | a4217760b409a0ab05b32f748da70dce629e4697 (diff) | |
download | mariadb-git-c0941e427888b43460c85e58ab91b423844bb679.tar.gz |
Import zlib-1.2.3 library
zlib/ChangeLog:
Import zlib-1.2.3
zlib/FAQ:
Import zlib-1.2.3
zlib/README:
Import zlib-1.2.3
zlib/adler32.c:
Import zlib-1.2.3
zlib/compress.c:
Import zlib-1.2.3
zlib/crc32.c:
Import zlib-1.2.3
zlib/deflate.c:
Import zlib-1.2.3
zlib/deflate.h:
Import zlib-1.2.3
zlib/gzio.c:
Import zlib-1.2.3
zlib/infback.c:
Import zlib-1.2.3
zlib/inffast.c:
Import zlib-1.2.3
zlib/inflate.c:
Import zlib-1.2.3
zlib/inflate.h:
Import zlib-1.2.3
zlib/inftrees.c:
Import zlib-1.2.3
zlib/inftrees.h:
Import zlib-1.2.3
zlib/trees.c:
Import zlib-1.2.3
zlib/zconf.h:
Import zlib-1.2.3
zlib/zlib.3:
Import zlib-1.2.3
zlib/zlib.h:
Import zlib-1.2.3
zlib/zutil.c:
Import zlib-1.2.3
zlib/zutil.h:
Import zlib-1.2.3
zlib/README.MySQL:
Import zlib-1.2.3
Diffstat (limited to 'zlib/inflate.h')
-rw-r--r-- | zlib/inflate.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/zlib/inflate.h b/zlib/inflate.h index 9a12c8fd296..07bd3e78a7c 100644 --- a/zlib/inflate.h +++ b/zlib/inflate.h @@ -1,5 +1,5 @@ /* inflate.h -- internal inflate state definition - * Copyright (C) 1995-2003 Mark Adler + * Copyright (C) 1995-2004 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -19,7 +19,6 @@ /* Possible inflate modes between inflate() calls */ typedef enum { HEAD, /* i: waiting for magic header */ -#ifdef GUNZIP FLAGS, /* i: waiting for method and flags (gzip) */ TIME, /* i: waiting for modification time (gzip) */ OS, /* i: waiting for extra flags and operating system (gzip) */ @@ -28,7 +27,6 @@ typedef enum { NAME, /* i: waiting for end of file name (gzip) */ COMMENT, /* i: waiting for end of comment (gzip) */ HCRC, /* i: waiting for header crc (gzip) */ -#endif DICTID, /* i: waiting for dictionary check value */ DICT, /* waiting for inflateSetDictionary() call */ TYPE, /* i: waiting for type bits, including last-flag bit */ @@ -45,9 +43,7 @@ typedef enum { MATCH, /* o: waiting for output space to copy string */ LIT, /* o: waiting for output space to write literal */ CHECK, /* i: waiting for 32-bit check value */ -#ifdef GUNZIP LENGTH, /* i: waiting for 32-bit length (gzip) */ -#endif DONE, /* finished check, done -- remain here until reset */ BAD, /* got a data error -- remain here until reset */ MEM, /* got an inflate() memory error -- remain here until reset */ @@ -84,8 +80,10 @@ struct inflate_state { int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ int havedict; /* true if dictionary provided */ int flags; /* gzip header method and flags (0 if zlib) */ + unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ unsigned long check; /* protected copy of check value */ unsigned long total; /* protected copy of output count */ + gz_headerp head; /* where to save gzip header information */ /* sliding window */ unsigned wbits; /* log base 2 of requested window size */ unsigned wsize; /* window size or zero if not using window */ |