Reputation: 87
I'm trying to read a tcp packet containing a http zipped message, but it fails with 'Exception during zlib decompression: ( -3 ) incorrect header check'. What's wrong with my code, or is there a library that does that for me ?
std::string decompress_string(const std::string& str) {
z_stream zs; // z_stream is zlib's control structure
memset(&zs, 0, sizeof(zs));
if (inflateInit(&zs) != Z_OK)
throw(std::runtime_error("inflateInit failed while decompressing."));
zs.next_in = (Bytef*)str.data();
zs.avail_in = str.size();
int ret;
char outbuffer[32768];
std::string outstring;
// get the decompressed bytes blockwise using repeated calls to inflate
do {
zs.next_out = reinterpret_cast<Bytef*>(outbuffer);
zs.avail_out = sizeof(outbuffer);
ret = inflate(&zs, 0);
if (outstring.size() < zs.total_out) {
outstring.append(outbuffer,
zs.total_out - outstring.size());
}
} while (ret == Z_OK);
inflateEnd(&zs);
if (ret != Z_STREAM_END) { // an error occurred that was not EOF
qDebug() << "Exception during zlib decompression: (" << ret << ") " << zs.msg;
return "";
}
return outstring;
}
std::string parseHttp(std::string payload) {
size_t index = payload.find("\r\n\r\n");
if (index == std::string::npos) {
qDebug() << "http body not found, dropped.";
return "";
}
std::string body = payload.substr(index + 4);
if (payload.find("Content-Encoding: gzip") == std::string::npos){
return body;
} else {
return decompress_string(body);
}
}
Upvotes: 2
Views: 495
Reputation: 112384
It's probably in gzip format. Try using inflateInit2()
with wbits
set to 31
to decode the gzip format. gzip data starts with 1f 8b 08
.
Upvotes: 3