summaryrefslogtreecommitdiff
path: root/methods/https.h
AgeCommit message (Collapse)AuthorFilesLines
2014-03-13cleanup headers and especially #includes everywhereDavid Kalnischkies1-1/+6
Beside being a bit cleaner it hopefully also resolves oddball problems I have with high levels of parallel jobs. Git-Dch: Ignore Reported-By: iwyu (include-what-you-use)
2014-03-13warning: unused parameter ‘foo’ [-Wunused-parameter]David Kalnischkies1-8/+8
Reported-By: gcc -Wunused-parameter Git-Dch: Ignore
2014-02-22Fix typos in documentation (codespell)Michael Vogt1-1/+1
2014-01-16correct some style/performance/warnings from cppcheckDavid Kalnischkies1-1/+1
The most "visible" change is from utime to utimensat/futimens as the first one isn't part of POSIX anymore. Reported-By: cppcheck Git-Dch: Ignore
2013-10-01handle complete responses to https range requestsDavid Kalnischkies1-0/+29
Servers might respond with a complete file either because they don't support Ranges at all or the If-Range condition isn't statisfied, so we have to parse the headers curl gets ourself to seek or truncate the file we have so far. This also finially adds the testcase testing a bunch of partial situations for both, http and https - which is now all green. Closes: 617643, 667699 LP: 1157943
2013-01-09add missing curl_easy_cleanup()Michael Vogt1-0/+5
2012-02-11just in case: correct the header-guard for https to not match httpDavid Kalnischkies1-2/+2
2012-02-11remove the arbitrary MAXLEN limit for response lines (Closes: #658346)David Kalnischkies1-2/+0
2011-09-19use forward declaration in headers if possible instead of includesDavid Kalnischkies1-1/+2
2009-11-17methods/https.cc: cleanup for CURLOPT_LOW_SPEED_TIMEMichael Vogt1-0/+2
2007-07-10Minor typos.Otavio Salvador1-1/+1
2007-07-10 * Fix compilation warnings:Otavio Salvador1-1/+1
- 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* added https transport method as optional pacakgeMichael Vogt1-0/+48