diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-12-03 23:31:49 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-12-03 23:31:49 +0000 |
commit | b4e6fa2090f102b7fc6838056c2df31358d83d4e (patch) | |
tree | aa67876dab1a20307201bf90d1a4ead9fec0c891 /lib/libz | |
parent | 0709f491634991bbd32906b59cfeab4af82affc5 (diff) |
sync w/ zlib.h -r 1.8;
Diffstat (limited to 'lib/libz')
-rw-r--r-- | lib/libz/compress.3 | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/lib/libz/compress.3 b/lib/libz/compress.3 index 5fcb6c33d2f..dbf013eb8ee 100644 --- a/lib/libz/compress.3 +++ b/lib/libz/compress.3 @@ -1,6 +1,6 @@ -.\" $OpenBSD: compress.3,v 1.5 2004/12/03 02:20:21 jmc Exp $ +.\" $OpenBSD: compress.3,v 1.6 2004/12/03 23:31:48 jmc Exp $ .\" -.\" Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler +.\" Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler .\" .\" This software is provided 'as-is', without any express or implied .\" warranty. In no event will the authors be held liable for any damages @@ -21,7 +21,7 @@ .\" Converted to mdoc format for the OpenBSD project .\" by Jason McIntyre <jmc@openbsd.org> .\" -.\" This page corresponds to zlib version 1.2.1 +.\" This page corresponds to zlib version 1.2.2 .\" .Dd September 17, 2003 .Dt COMPRESS 3 @@ -144,7 +144,7 @@ Checksum functions .Sh DESCRIPTION This manual page describes the .Nm zlib -general purpose compression library, version 1.2.1. +general purpose compression library, version 1.2.2. .Pp The .Nm zlib @@ -163,7 +163,7 @@ and/or consume the output .Pq providing more output space before each call. .Pp -The compressed data format used by the in-memory functions is the +The compressed data format used by default by the in-memory functions is the .Nm zlib format, which is a zlib wrapper documented in RFC 1950, wrapped around a deflate stream, which is itself documented in RFC 1951. @@ -177,6 +177,7 @@ using the functions that start with .Qq gz . The gzip format is different from the zlib format. gzip is a gzip wrapper, documented in RFC 1952, wrapped around a deflate stream. +This library can optionally read and write gzip streams in memory as well. .Pp The zlib format was designed to be compact and fast for use in memory and on communications channels. @@ -184,12 +185,6 @@ The gzip format was designed for single-file compression on file systems, has a larger header than zlib to maintain directory information, and uses a different, slower, check method than zlib. .Pp -This library does not provide any functions to write gzip files in memory. -However such functions could be easily written using zlib's -.Fn deflate -function, the documentation in the gzip RFC, and the examples in -.Pa gzio.c . -.Pp The library does not install any signal handler. The decoder checks the consistency of the compressed data, so the library should never crash even in case of corrupted input. @@ -721,7 +716,7 @@ If a preset dictionary is needed after this call (see .Fn inflateSetDictionary below), .Fn inflate -sets strm-adler to the Adler-32 checksum of the dictionary +sets strm-\*(Gtadler to the Adler-32 checksum of the dictionary chosen by the compressor and returns Z_NEED_DICT; otherwise it sets strm-\*(Gtadler to the Adler-32 checksum of all output produced so far (that is, @@ -861,6 +856,8 @@ no modification time .Pq set to zero , no header crc, and the operating system will be set to 255 .Pq unknown . +If a gzip stream is being written, +strm-\*(Gtadler is a crc32 instead of an adler32. .Pp The .Fa memLevel @@ -1189,6 +1186,8 @@ Add 32 to windowBits to enable zlib and gzip decoding with automatic header detection, or add 16 to decode only the gzip format (the zlib format will return a .Dv Z_DATA_ERROR ) . +If a gzip stream is being decoded, +strm-\*(Gtadler is a crc32 instead of an adler32. .Pp .Fn inflateInit2 returns |