aboutsummaryrefslogtreecommitdiff
path: root/inflate.h
diff options
context:
space:
mode:
Diffstat (limited to 'inflate.h')
-rw-r--r--inflate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/inflate.h b/inflate.h
index fbc9a67..adbc775 100644
--- a/inflate.h
+++ b/inflate.h
@@ -82,7 +82,8 @@ typedef enum {
82struct inflate_state { 82struct inflate_state {
83 inflate_mode mode; /* current inflate mode */ 83 inflate_mode mode; /* current inflate mode */
84 int last; /* true if processing last block */ 84 int last; /* true if processing last block */
85 int wrap; /* bit 0 true for zlib, bit 1 true for gzip */ 85 int wrap; /* bit 0 true for zlib, bit 1 true for gzip,
86 bit 2 true to validate check value */
86 int havedict; /* true if dictionary provided */ 87 int havedict; /* true if dictionary provided */
87 int flags; /* gzip header method and flags (0 if zlib) */ 88 int flags; /* gzip header method and flags (0 if zlib) */
88 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */ 89 unsigned dmax; /* zlib header max distance (INFLATE_STRICT) */