summaryrefslogtreecommitdiff
path: root/source4/lib/zlib/contrib/infback9/inflate9.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-07-29 20:01:23 +0000
committerStefan Metzmacher <metze@samba.org>2008-08-07 19:15:59 +0200
commit05235802f7ae8fb1df952d28629dea26af5f1436 (patch)
tree68000e8b17e2d5e590616d26d71dc6f26108ccfc /source4/lib/zlib/contrib/infback9/inflate9.h
parent8275d511bc3ea79a14a4704b7d914222adc2d321 (diff)
downloadsamba-05235802f7ae8fb1df952d28629dea26af5f1436.tar.gz
samba-05235802f7ae8fb1df952d28629dea26af5f1436.tar.bz2
samba-05235802f7ae8fb1df952d28629dea26af5f1436.zip
import of zlib-1.2.3
We want to use zlib for the mszip ndr (de)compression later, we'll need to add some new functions to zlib. metze (This used to be commit 65c9e91a1bb24851a030a304d011558562cc50d6)
Diffstat (limited to 'source4/lib/zlib/contrib/infback9/inflate9.h')
-rw-r--r--source4/lib/zlib/contrib/infback9/inflate9.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/source4/lib/zlib/contrib/infback9/inflate9.h b/source4/lib/zlib/contrib/infback9/inflate9.h
new file mode 100644
index 0000000000..ee9a79394b
--- /dev/null
+++ b/source4/lib/zlib/contrib/infback9/inflate9.h
@@ -0,0 +1,47 @@
+/* inflate9.h -- internal inflate state definition
+ * Copyright (C) 1995-2003 Mark Adler
+ * For conditions of distribution and use, see copyright notice in zlib.h
+ */
+
+/* WARNING: this file should *not* be used by applications. It is
+ part of the implementation of the compression library and is
+ subject to change. Applications should only use zlib.h.
+ */
+
+/* Possible inflate modes between inflate() calls */
+typedef enum {
+ TYPE, /* i: waiting for type bits, including last-flag bit */
+ STORED, /* i: waiting for stored size (length and complement) */
+ TABLE, /* i: waiting for dynamic block table lengths */
+ LEN, /* i: waiting for length/lit code */
+ DONE, /* finished check, done -- remain here until reset */
+ BAD /* got a data error -- remain here until reset */
+} inflate_mode;
+
+/*
+ State transitions between above modes -
+
+ (most modes can go to the BAD mode -- not shown for clarity)
+
+ Read deflate blocks:
+ TYPE -> STORED or TABLE or LEN or DONE
+ STORED -> TYPE
+ TABLE -> LENLENS -> CODELENS -> LEN
+ Read deflate codes:
+ LEN -> LEN or TYPE
+ */
+
+/* state maintained between inflate() calls. Approximately 7K bytes. */
+struct inflate_state {
+ /* sliding window */
+ unsigned char FAR *window; /* allocated sliding window, if needed */
+ /* dynamic table building */
+ unsigned ncode; /* number of code length code lengths */
+ unsigned nlen; /* number of length code lengths */
+ unsigned ndist; /* number of distance code lengths */
+ unsigned have; /* number of code lengths in lens[] */
+ code FAR *next; /* next available space in codes[] */
+ unsigned short lens[320]; /* temporary storage for code lengths */
+ unsigned short work[288]; /* work area for code table building */
+ code codes[ENOUGH]; /* space for code tables */
+};