From ed5a1e2a7b8211b6cbc6e6801e1f018a13520598 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Mon, 16 Aug 2010 22:48:17 +0200 Subject: Adding raw inflate support, also should hopefully support gz files using zlib_inflate. --- lib/Handle.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Handle.cc') diff --git a/lib/Handle.cc b/lib/Handle.cc index 39bc981..4ee233c 100644 --- a/lib/Handle.cc +++ b/lib/Handle.cc @@ -869,7 +869,7 @@ int Handle::GetNbHandles() { // // shamelessly ripped from http://www.zlib.net/zpipe.c // -int Handle::zlib_inflate(Handle * in, Handle * out) throw (GeneralException) { +int Handle::zlib_inflate(Handle * in, Handle * out, bool raw) throw (GeneralException) { int ret; z_stream s; unsigned char b_in[CHUNK]; @@ -886,7 +886,7 @@ int Handle::zlib_inflate(Handle * in, Handle * out) throw (GeneralException) { have = total_out = 0; - ret = inflateInit(&s); + ret = inflateInit2(&s, raw ? -15 : 0); if (ret != Z_OK) { throw GeneralException("zlib: inflateInit() failed: " + String(ret)); } -- cgit v1.2.3