summaryrefslogtreecommitdiff
path: root/libfetch/ftp.c
AgeCommit message (Collapse)AuthorFilesLines
2018-09-05libfetch: do not give out user/hostname as ftp anonymous passwordTimo Teräs1-15/+5
This is unwanted information disclosure. Reported-by: Max Justicz <max@justi.cz>
2017-10-05libfetch: remove unwanted code conditionalsTimo Teräs1-12/+0
2017-10-05build and use bundled libfetch nativelyTimo Teräs1-15/+0
2017-10-05import libfetch-2.38 from NetBSDTimo Teräs1-0/+1310
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.