我有一个很奇怪的问题。我真的希望有人有一个答案,因为我不知道还有什么地方可以问。
我写在由Apache的执行,并输出HTML代码C ++一个CGI应用程序。 我压缩HTML输出自己 - 从我的C ++应用程序中 - 因为我的虚拟主机不支持mod_deflate模块的某些原因。
我与Firefox 2,火狐3,Opera 9中,Opera 10的,谷歌Chrome,Safari浏览器,IE6,IE7,IE8测试了,甚至wget的。它的工作原理与除IE8 任何东西 。
IE8只是说:“Internet Explorer无法显示该网页”,没有任何信息。 我知道这是因为压缩的,只是因为它的工作原理,如果我禁用它。
你知道我在做什么错?
我使用zlib压缩它,确切的代码是:
/* Compress it */
int compressed_output_size = content.length() + (content.length() * 0.2) + 16;
char *compressed_output = (char *)Alloc(compressed_output_size);
int compressed_output_length;
Compress(compressed_output, compressed_output_size, (void *)content.c_str(), content.length(), &compressed_output_length);
/* Send the compressed header */
cout << "Content-Encoding: deflate\r\n";
cout << boost::format("Content-Length: %d\r\n") % compressed_output_length;
cgiHeaderContentType("text/html");
cout.write(compressed_output, compressed_output_length);
static void Compress(void *to, size_t to_size, void *from, size_t from_size, int *final_size)
{
int ret;
z_stream stream;
stream.zalloc = Z_NULL;
stream.zfree = Z_NULL;
stream.opaque = Z_NULL;
if ((ret = deflateInit(&stream, CompressionSpeed)) != Z_OK)
COMPRESSION_ERROR("deflateInit() failed: %d", ret);
stream.next_out = (Bytef *)to;
stream.avail_out = (uInt)to_size;
stream.next_in = (Bytef *)from;
stream.avail_in = (uInt)from_size;
if ((ret = deflate(&stream, Z_NO_FLUSH)) != Z_OK)
COMPRESSION_ERROR("deflate() failed: %d", ret);
if (stream.avail_in != 0)
COMPRESSION_ERROR("stream.avail_in is not 0 (it's %d)", stream.avail_in);
if ((ret = deflate(&stream, Z_FINISH)) != Z_STREAM_END)
COMPRESSION_ERROR("deflate() failed: %d", ret);
if ((ret = deflateEnd(&stream)) != Z_OK)
COMPRESSION_ERROR("deflateEnd() failed: %d", ret);
if (final_size)
*final_size = stream.total_out;
return;
}