summaryrefslogtreecommitdiff
path: root/methods/https.cc
AgeCommit message (Collapse)AuthorFilesLines
2011-01-12* methods/https.cc:David Kalnischkies1-4/+2
- fix CURLOPT_SSL_VERIFYHOST by really passing 2 to it if enabled
2010-01-08* French manpage translation updateMichael Vogt1-6/+20
* spot & fix various typos in all manpages * German manpage translation update * cmdline/apt-cache.cc: - remove translatable marker from the "%4i %s\n" string * buildlib/po4a_manpage.mak: - instruct debiandoc to build files with utf-8 encoding * buildlib/tools.m4: - fix some warning from the buildtools * apt-pkg/acquire-item.cc: - add configuration PDiffs::Limit-options to not download too many or too big patches (Closes: #554349) * debian/control: - let all packages depend on ${misc:Depends} * share/*-archive.gpg: - remove the horrible outdated files. We already depend on the keyring so we don't need to ship our own version * cmdline/apt-key: - errors out if wget is not installed (Closes: #545754) - add --keyring option as we have now possibly many * methods/gpgv.cc: - pass all keyrings (TrustedParts) to gpgv instead of using only one trusted.gpg keyring (Closes: #304846) * methods/https.cc: - finally merge the rest of the patchset from Arnaud Ebalard with the CRL and Issuers options, thanks! (Closes: #485963)
2009-12-14merged patches from david (many thanks)Michael Vogt1-46/+42
2009-12-11fix the backport of the https methods as they would require an ABI breakDavid Kalnischkies1-3/+3
otherwise in the Configuration class.
2009-12-11add https options which default to the ones from http for the httpsDavid Kalnischkies1-55/+45
method as this is more sane than using only the http options without a possibility to override these for https.
2009-12-11add config setting for User-Agent in http and https to the Acquire group,David Kalnischkies1-1/+4
thanks Timothy J. Miller! (Closes: #355782)
2009-12-10merged -r1875..1886 from lp:~donkult/apt/sidMichael Vogt1-1/+0
2009-12-10* merge lp:~mvo/apt/netrc branch, this adds support for aMichael Vogt1-1/+4
/etc/apt/auth.conf that can be used to store username/passwords in a "netrc" style file (with the extension that it supports "/" in a machine definition). Based on the maemo git branch. * apt-pkg/deb/dpkgpm.cc: - add "purge" to list of known actions
2009-12-07merge lp:~mvo/apt/netrc branch, this adds support for aMichael Vogt1-1/+4
/etc/apt/auth.conf that can be used to store username/passwords in a "netrc" style file (with the extension that it supports "/" in a machine definition). Based on the maemo git branch.
2009-12-04* apt-pkg/contrib/netrc.cc:Michael Vogt1-1/+1
- check for hostname and then host+path - better debug output * methods/https.cc: - fix bug in netrc integration
2009-12-02* apt-pkg/packagemanager.cc:Michael Vogt1-1/+3
- add output about pre-depends configuring when debug::pkgPackageManager is used * methods/https.cc: - fix incorrect use of CURLOPT_TIMEOUT, closes: #497983, LP: #354972 thanks to Brian Thomason for the patch * apt-pkg/depcache.cc, apt-pkg/indexcopy.cc: - typo fix (LP: #462328) * cmdline/apt-key: - Emit a warning if removed keys keyring is missing and skip associated checks (LP: #218971)
2009-11-17methods/https.cc: cleanup for CURLOPT_LOW_SPEED_TIMEMichael Vogt1-2/+1
2009-11-17* methods/https.cc:Michael Vogt1-1/+4
- fix incorrect use of CURLOPT_TIMEOUT, closes: #497983, LP: #354972 thanks to Brian Thomason for the patch
2009-10-16add maybe_add_auth for ftp as wellMichael Vogt1-1/+1
2009-10-16port netrc support from maemonMichael Vogt1-0/+3
2009-10-12methods/https.cc: Add support for authentication using netrc (Closes: #518473),Julian Andres Klode1-0/+1
patch by Jussi Hakala <jussi.hakala@hut.fi>.
2009-08-19merged from the jackyf-devel branchMichael Vogt1-12/+19
2009-02-03* methods/https.cc:Michael Vogt1-0/+5
- add Acquire::https::AllowRedirect support
2009-02-03methods/https.cc: do not unlink partial files (thanks to robbiew)Michael Vogt1-1/+0
2008-12-15Make apt proxy options have the highest priority, unified proxy determining ↵Eugene V. Lyubimkin1-12/+19
code.
2008-10-28fix various -Wall warningsMichael Vogt1-1/+1
2008-08-05fix various -Wall warningsMichael Vogt1-1/+1
2008-07-25* merge patch that enforces stricter https server certificateMichael Vogt1-12/+47
checking (thanks to Arnaud Ebalard, closes: #485960) * allow per-mirror specific https settings (thanks to Arnaud Ebalard, closes: #485965) * add doc/examples/apt-https-method-example.cof (thanks to Arnaud Ebalard, closes: #485964)
2008-07-25* merge patch that enforces stricter https server certificateMichael Vogt1-12/+47
checking (thanks to Arnaud Ebalard, closes: #485960) * allow per-mirror specific https settings (thanks to Arnaud Ebalard, closes: #485965)
2008-05-02Add timeout support for https.Otavio Salvador1-1/+5
2007-10-05methods/https.cc:Michael Vogt1-13/+13
- delete zero size I-M-S hits - fix of-by-one error in I-M-S code
2007-08-10* Reset curl options and timestamp between downloaded files. Thanks toOtavio Salvador1-0/+13
Ryan Murray <rmurray@debian.org> for the patch (closes: #437150)
2007-08-03* apt-pkg/acquire-item.cc:Michael Vogt1-8/+20
- remove zero size files on I-M-S hit * methods/https.cc: - only send LastModified if we actually have one - send range request with if-range - delete failed downloads
2007-08-02* methods/https.cc:Michael Vogt1-8/+20
- only send i-m-s if last-modified is > 0 - instead of resume send a range: if-range: custom header - merge 304 detection patch from thom may (thanks!) * apt-pkg/acquire-item.cc: - remove empty files on i-m-s hits from partial/
2007-07-10Minor typos.Otavio Salvador1-1/+1
2007-07-10 * Fix compilation warnings:Otavio Salvador1-3/+2
- apt-pkg/contrib/configuration.cc: wrong argument type; - apt-pkg/deb/dpkgpm.cc: wrong signess; - apt-pkg-acquire-item.cc: wrong signess and orderned initializers; - methods/https.cc: - type conversion; - unused variable; - changed SetupProxy() method to void;
2006-12-19* methods/https.cc:Michael Vogt1-3/+26
- implemented various cert verification options
2006-12-19* added https transport method as optional pacakgeMichael Vogt1-0/+226