summaryrefslogtreecommitdiff
path: root/libfetch/fetch.h
AgeCommit message (Collapse)AuthorFilesLines
2023-05-02libfetch, apk: display warning for permanent redirects during initTimo Teräs1-0/+4
fixes #10776
2022-12-21apk, fetch: implement --no-check-certificateTimo Teräs1-0/+2
fixes #10650
2021-01-08libfetch: Increase URL password lengthMike Detwiler1-1/+1
Signed-off-by: Mike Detwiler <det@shift5.io>
2017-10-05import libfetch-2.38 from NetBSDTimo Teräs1-0/+187
ftp://ftp.fu-berlin.de/unix/NetBSD/packages/current-src/pkgsrc/net/libfetch/files libfetch comes (at least) in netbsd and freebsd flavors which differing functionality. Alpine and Arch package netbsd one, but it's not widely packaged across other distributions. We need NetBSD version as it does not use funopen(3) which is not supported in musl, and supports connection pooling. FreeBSD seems to be the orignal and better maintained version with support for SSL CAs, client certificate authentication, proxy authentication, and improved http redirect handling. So this imports NetBSD version, and future commits will pick up the needed improvements from FreeBSD tree. Incidentally, this also fixes #7857 and likes for good.