aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2025-05-18 09:18:02 -0700
committerMark Adler <git@madler.net>2025-12-06 17:39:45 -0800
commit9702c9d64ee20f5efe4bc6b78820c84e81a99d2d (patch)
tree19a745eac26841367d7a7fb4810d7e39b5502ccc
parentbac2e2d457f17fce7aad7d8069ab7e8b392e185c (diff)
downloadzlib-9702c9d64ee20f5efe4bc6b78820c84e81a99d2d.tar.gz
zlib-9702c9d64ee20f5efe4bc6b78820c84e81a99d2d.tar.bz2
zlib-9702c9d64ee20f5efe4bc6b78820c84e81a99d2d.zip
Update links to the RFCs.
-rw-r--r--README8
-rw-r--r--deflate.c2
-rw-r--r--zlib.310
-rw-r--r--zlib.3.pdfbin25523 -> 28212 bytes
-rw-r--r--zlib.h2
5 files changed, 11 insertions, 11 deletions
diff --git a/README b/README
index 75da520..a798a4a 100644
--- a/README
+++ b/README
@@ -2,9 +2,9 @@ ZLIB DATA COMPRESSION LIBRARY
2 2
3zlib 1.3.1.1 is a general purpose data compression library. All the code is 3zlib 1.3.1.1 is a general purpose data compression library. All the code is
4thread safe. The data format used by the zlib library is described by RFCs 4thread safe. The data format used by the zlib library is described by RFCs
5(Request for Comments) 1950 to 1952 in the files 5(Request for Comments) 1950 to 1952 at
6http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and 6https://datatracker.ietf.org/doc/html/rfc1950 (zlib format), rfc1951 (deflate
7rfc1952 (gzip format). 7format) and rfc1952 (gzip format).
8 8
9All functions of the compression library are documented in the file zlib.h 9All functions of the compression library are documented in the file zlib.h
10(volunteer to write man pages welcome, contact zlib@gzip.org). A usage example 10(volunteer to write man pages welcome, contact zlib@gzip.org). A usage example
@@ -29,7 +29,7 @@ PLEASE read the zlib FAQ http://zlib.net/zlib_faq.html before asking for help.
29 29
30Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997 30Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
31issue of Dr. Dobb's Journal; a copy of the article is available at 31issue of Dr. Dobb's Journal; a copy of the article is available at
32https://marknelson.us/posts/1997/01/01/zlib-engine.html . 32https://web.archive.org/web/20241130054640/https://marknelson.us/posts/1997/01/01/zlib-engine.html .
33 33
34The changes made in version 1.3.1.1 are documented in the file ChangeLog. 34The changes made in version 1.3.1.1 are documented in the file ChangeLog.
35 35
diff --git a/deflate.c b/deflate.c
index 2987855..d77221e 100644
--- a/deflate.c
+++ b/deflate.c
@@ -37,7 +37,7 @@
37 * REFERENCES 37 * REFERENCES
38 * 38 *
39 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification". 39 * Deutsch, L.P.,"DEFLATE Compressed Data Format Specification".
40 * Available in http://tools.ietf.org/html/rfc1951 40 * Available at https://datatracker.ietf.org/doc/html/rfc1951
41 * 41 *
42 * A description of the Rabin and Karp algorithm is given in the book 42 * A description of the Rabin and Karp algorithm is given in the book
43 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252. 43 * "Algorithms" by R. Sedgewick, Addison-Wesley, p252.
diff --git a/zlib.3 b/zlib.3
index 3e24d93..c98b4be 100644
--- a/zlib.3
+++ b/zlib.3
@@ -1,4 +1,4 @@
1.TH ZLIB 3 "xx Jan 2024" 1.TH ZLIB 3 "18 May 2025"
2.SH NAME 2.SH NAME
3zlib \- compression/decompression library 3zlib \- compression/decompression library
4.SH SYNOPSIS 4.SH SYNOPSIS
@@ -73,13 +73,13 @@ http://zlib.net/
73The data format used by the 73The data format used by the
74.I zlib 74.I zlib
75library is described by RFC 75library is described by RFC
76(Request for Comments) 1950 to 1952 in the files: 76(Request for Comments) 1950 to 1952 at:
77.IP 77.IP
78http://tools.ietf.org/html/rfc1950 (for the zlib header and trailer format) 78https://datatracker.ietf.org/doc/html/rfc1950 (for the zlib header and trailer format)
79.br 79.br
80http://tools.ietf.org/html/rfc1951 (for the deflate compressed data format) 80https://datatracker.ietf.org/doc/html/rfc1951 (for the deflate compressed data format)
81.br 81.br
82http://tools.ietf.org/html/rfc1952 (for the gzip header and trailer format) 82https://datatracker.ietf.org/doc/html/rfc1952 (for the gzip header and trailer format)
83.LP 83.LP
84Mark Nelson wrote an article about 84Mark Nelson wrote an article about
85.I zlib 85.I zlib
diff --git a/zlib.3.pdf b/zlib.3.pdf
index b224532..26f0816 100644
--- a/zlib.3.pdf
+++ b/zlib.3.pdf
Binary files differ
diff --git a/zlib.h b/zlib.h
index 1a8376d..9ec7bc1 100644
--- a/zlib.h
+++ b/zlib.h
@@ -24,7 +24,7 @@
24 24
25 25
26 The data format used by the zlib library is described by RFCs (Request for 26 The data format used by the zlib library is described by RFCs (Request for
27 Comments) 1950 to 1952 in the files http://tools.ietf.org/html/rfc1950 27 Comments) 1950 to 1952 at https://datatracker.ietf.org/doc/html/rfc1950
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format). 28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
29*/ 29*/
30 30