summaryrefslogtreecommitdiff
path: root/FAQ.zlib
diff options
context:
space:
mode:
authorViktor Szakats <commit@vsz.me>2021-05-06 19:49:21 +0200
committerHans Kristian Rosbach <hk-github@circlestorm.org>2021-05-08 18:10:56 +0200
commit62b269b4a5f4502d6dc03d73bb5b552e80066885 (patch)
tree15dd579bd319dced016b72a7b69048caaed80a68 /FAQ.zlib
parent811ddc9ce722d6c2ca613dbb9ae4da8194d15256 (diff)
downloadProject-Tick-62b269b4a5f4502d6dc03d73bb5b552e80066885.tar.gz
Project-Tick-62b269b4a5f4502d6dc03d73bb5b552e80066885.zip
upgrade links to HTTPS
http://infozip.sourceforge.net/ is sadly not having HTTPS access enabled. Shoutout to somebody with admin access for this project: It would be nice to enable it and thus allowing secure access to these pages via https://infozip.sourceforge.io/ . The option has been there for a while now: https://sourceforge.net/blog/introducing-https-for-project-websites/ also: - follow permanent redirects - add ending slashes
Diffstat (limited to 'FAQ.zlib')
-rw-r--r--FAQ.zlib26
1 files changed, 13 insertions, 13 deletions
diff --git a/FAQ.zlib b/FAQ.zlib
index f234f3e592..a681656f7d 100644
--- a/FAQ.zlib
+++ b/FAQ.zlib
@@ -9,8 +9,8 @@
If your question is not there, please check the zlib home page
-http://zlib.net/ which may have more recent information.
-The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
+https://zlib.net/ which may have more recent information.
+The lastest zlib FAQ is at https://zlib.net/zlib_faq.html
1. Is zlib Y2K-compliant?
@@ -21,12 +21,12 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
The zlib sources can be compiled without change to produce a DLL. See the
file win32/DLL_FAQ.txt in the zlib distribution. Pointers to the
- precompiled DLL are found in the zlib web site at http://zlib.net/ .
+ precompiled DLL are found in the zlib web site at https://zlib.net/ .
3. Where can I get a Visual Basic interface to zlib?
See
- * http://marknelson.us/1997/01/01/zlib-engine/
+ * https://marknelson.us/1997/01/01/zlib-engine/
* win32/DLL_FAQ.txt in the zlib distribution
4. compress() returns Z_BUF_ERROR.
@@ -45,7 +45,7 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
made with more input or output space. A Z_BUF_ERROR may in fact be
unavoidable depending on how the functions are used, since it is not
possible to tell whether or not there is more output pending when
- strm.avail_out returns with zero. See http://zlib.net/zlib_how.html for a
+ strm.avail_out returns with zero. See https://zlib.net/zlib_how.html for a
heavily annotated example.
6. Where's the zlib documentation (man pages, etc.)?
@@ -116,8 +116,8 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
16. Can zlib decode Flate data in an Adobe PDF file?
- Yes. See http://www.pdflib.com/ . To modify PDF forms, see
- http://sourceforge.net/projects/acroformtool/ .
+ Yes. See https://www.pdflib.com/ . To modify PDF forms, see
+ https://sourceforge.net/projects/acroformtool/ .
17. Why am I getting this "register_frame_info not found" error on Solaris?
@@ -130,7 +130,7 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
The symbol __register_frame_info is not part of zlib, it is generated by
the C compiler (cc or gcc). You must recompile applications using zlib
which have this problem. This problem is specific to Solaris. See
- http://www.sunfreeware.com for Solaris versions of zlib and applications
+ http://www.sunfreeware.com/ for Solaris versions of zlib and applications
using zlib.
18. Why does gzip give an error on a file I make with compress/deflate?
@@ -242,7 +242,7 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
As far as we know, no. In fact, that was originally the whole point behind
zlib. Look here for some more information:
- http://www.gzip.org/#faq11
+ https://www.gzip.org/#faq11
32. Can zlib work with greater than 4 GB of data?
@@ -278,7 +278,7 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
If you don't have snprintf() or vsnprintf() and would like one, you can
find a portable implementation here:
- http://www.ijs.si/software/snprintf/
+ https://www.ijs.si/software/snprintf/
Note that you should be using the most recent version of zlib. Versions
1.1.3 and before were subject to a double-free vulnerability, and versions
@@ -290,7 +290,7 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
Probably what you want is to use zlib in Java. zlib is already included
as part of the Java SDK in the java.util.zip package. If you really want
a version of zlib written in the Java language, look on the zlib home
- page for links: http://zlib.net/ .
+ page for links: https://zlib.net/ .
35. I get this or that compiler or source-code scanner warning when I crank it
up to maximally-pedantic. Can't you guys write proper code?
@@ -321,9 +321,9 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
zlib doesn't support encryption. The original PKZIP encryption is very
weak and can be broken with freely available programs. To get strong
- encryption, use GnuPG, http://www.gnupg.org/ , which already includes zlib
+ encryption, use GnuPG, https://www.gnupg.org/ , which already includes zlib
compression. For PKZIP compatible "encryption", look at
- http://www.info-zip.org/
+ http://infozip.sourceforge.net/
39. What's the difference between the "gzip" and "deflate" HTTP 1.1 encodings?