summaryrefslogtreecommitdiffstats
path: root/runtime/zlibw.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-06-03 15:32:39 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-06-03 15:32:39 +0200
commit69eac5341d49c5c7278e6d86a77dc9d6b4a4edde (patch)
tree3d2f55b8fa0a8adc778be7902667543c03202aff /runtime/zlibw.h
parentf54e72cec06f21f4af939c70541e8a339b7e56ff (diff)
downloadrsyslog-69eac5341d49c5c7278e6d86a77dc9d6b4a4edde.tar.gz
rsyslog-69eac5341d49c5c7278e6d86a77dc9d6b4a4edde.tar.xz
rsyslog-69eac5341d49c5c7278e6d86a77dc9d6b4a4edde.zip
added gzip header to output files
so they can now be processed with the "regular" gzip tools
Diffstat (limited to 'runtime/zlibw.h')
-rw-r--r--runtime/zlibw.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/zlibw.h b/runtime/zlibw.h
index 01e0b054..63d8f386 100644
--- a/runtime/zlibw.h
+++ b/runtime/zlibw.h
@@ -30,6 +30,7 @@
/* interfaces */
BEGINinterface(zlibw) /* name must also be changed in ENDinterface macro! */
int (*DeflateInit)(z_streamp strm, int);
+ int (*DeflateInit2)(z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy);
int (*Deflate)(z_streamp strm, int);
int (*DeflateEnd)(z_streamp strm);
ENDinterface(zlibw)