| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge branch 'bc/http-keep-memory-given-to-curl' | Junio C Hamano | 2013-06-27 | 1 | -3/+9 |
|\ |
|
| * | http.c: don't rewrite the user:passwd string multiple times | Brandon Casey | 2013-06-19 | 1 | -3/+9 |
* | | Merge branch 'mv/ssl-ftp-curl' | Junio C Hamano | 2013-04-19 | 1 | -0/+10 |
|\ \ |
|
| * | | Support FTP-over-SSL/TLS for regular FTP | Modestas Vainius | 2013-04-12 | 1 | -0/+10 |
| |/ |
|
* | | http: set curl FAILONERROR each time we select a handle | Jeff King | 2013-04-16 | 1 | -1/+1 |
* | | http: drop http_error function | Jeff King | 2013-04-06 | 1 | -5/+0 |
* | | http: re-word http error message | Jeff King | 2013-04-06 | 1 | -1/+1 |
* | | http: simplify http_error helper function | Jeff King | 2013-04-06 | 1 | -7/+4 |
* | | http: add HTTP_KEEP_ERROR option | Jeff King | 2013-04-06 | 1 | -0/+37 |
* | | pkt-line: move LARGE_PACKET_MAX definition from sideband | Jeff King | 2013-02-20 | 1 | -0/+1 |
|/ |
|
* | http_request: reset "type" strbuf before adding | Jeff King | 2013-02-06 | 1 | -0/+1 |
* | Verify Content-Type from smart HTTP servers | Shawn Pearce | 2013-02-04 | 1 | -9/+22 |
* | Merge branch 'rb/http-cert-cred-no-username-prompt' into maint | Junio C Hamano | 2013-01-10 | 1 | -0/+1 |
|\ |
|
| * | http.c: Avoid username prompt for certifcate credentials | Rene Bredlau | 2012-12-21 | 1 | -0/+1 |
* | | Merge branch 'sz/maint-curl-multi-timeout' | Jeff King | 2012-11-09 | 1 | -0/+12 |
|\ \
| |/ |
|
| * | Fix potential hang in https handshake | Stefan Zager | 2012-10-19 | 1 | -0/+12 |
| * | Merge branch 'jk/maint-http-half-auth-push' into maint | Junio C Hamano | 2012-10-17 | 1 | -4/+3 |
| |\ |
|
* | \ | Merge branch 'jk/maint-http-init-not-in-result-handler' | Jeff King | 2012-10-29 | 1 | -4/+2 |
|\ \ \ |
|
| * | | | http: do not set up curl auth after a 401 | Jeff King | 2012-10-12 | 1 | -4/+2 |
| | |/
| |/| |
|
* | | | Merge branch 'jk/maint-http-half-auth-push' | Junio C Hamano | 2012-10-16 | 1 | -4/+3 |
|\ \ \
| |/ /
| | /
| |/
|/| |
|
| * | http: fix segfault in handle_curl_result | Jeff King | 2012-10-12 | 1 | -4/+3 |
* | | Enable info/refs gzip decompression in HTTP client | Shawn O. Pearce | 2012-09-20 | 1 | -0/+1 |
* | | Merge branch 'maint-1.7.11' into maint | Junio C Hamano | 2012-09-12 | 1 | -25/+30 |
|\ \ |
|
| * \ | Merge branch 'jk/maint-http-half-auth-push' into maint-1.7.11 | Junio C Hamano | 2012-09-12 | 1 | -23/+28 |
| |\ \
| | |/ |
|
| | * | http: factor out http error code handling | Jeff King | 2012-08-27 | 1 | -23/+28 |
* | | | http.c: don't use curl_easy_strerror prior to curl-7.12.0 | Joachim Schmitz | 2012-08-23 | 1 | -0/+2 |
* | | | http: get default user-agent from git_user_agent | Jeff King | 2012-06-03 | 1 | -1/+2 |
|/ / |
|
* | | remove superfluous newlines in error messages | Pete Wyckoff | 2012-04-30 | 1 | -1/+1 |
|/ |
|
* | http: use newer curl options for setting credentials | Jeff King | 2012-04-14 | 1 | -2/+11 |
* | http: clean up leak in init_curl_http_auth | Jeff King | 2012-04-14 | 1 | -3/+3 |
* | fix http auth with multiple curl handles | Jeff King | 2012-04-10 | 1 | -0/+2 |
* | correct spelling: an URL -> a URL | Jim Meyering | 2012-03-28 | 1 | -1/+1 |
* | http: support proxies that require authenticationnl/http-proxy-auth | Nelson Benitez Leon | 2012-03-02 | 1 | -1/+3 |
* | Merge branch 'jk/maint-push-over-dav' | Junio C Hamano | 2011-12-19 | 1 | -1/+7 |
|\ |
|
| * | http-push: enable "proactive auth"jk/maint-push-over-dav | Jeff King | 2011-12-13 | 1 | -1/+7 |
* | | Merge branch 'jk/credentials' | Junio C Hamano | 2011-12-19 | 1 | -88/+25 |
|\ \ |
|
| * | | http: use credential API to get passwords | Jeff King | 2011-12-11 | 1 | -88/+25 |
| |/ |
|
* | | Merge branch 'mf/curl-select-fdset' | Junio C Hamano | 2011-12-05 | 1 | -25/+21 |
|\ \
| |/
|/| |
|
| * | http: drop "local" member from request structmf/curl-select-fdset | Jeff King | 2011-11-04 | 1 | -6/+0 |
| * | http.c: Rely on select instead of tracking whether data was received | Mika Fischer | 2011-11-04 | 1 | -15/+1 |
| * | http.c: Use timeout suggested by curl instead of fixed 50ms timeout | Mika Fischer | 2011-11-04 | 1 | -2/+18 |
| * | http.c: Use curl_multi_fdset to select on curl fds instead of just sleeping | Mika Fischer | 2011-11-04 | 1 | -3/+3 |
* | | http: remove unused function hex() | Ramkumar Ramachandra | 2011-11-15 | 1 | -8/+0 |
* | | http: don't always prompt for password | Stefan Naewe | 2011-11-04 | 1 | -4/+3 |
* | | Merge branch 'jk/http-auth' | Junio C Hamano | 2011-10-17 | 1 | -40/+53 |
|\ \ |
|
| * | | http_init: accept separate URL parameter | Jeff King | 2011-10-15 | 1 | -4/+4 |
| * | | http: use hostname in credential description | Michael J Gruber | 2011-10-15 | 1 | -8/+35 |
| * | | http: retry authentication failures for all http requests | Jeff King | 2011-07-20 | 1 | -6/+11 |
| * | | url: decode buffers that are not NUL-terminated | Jeff King | 2011-07-20 | 1 | -23/+4 |
* | | | Merge branch 'jn/maint-http-error-message' | Junio C Hamano | 2011-10-10 | 1 | -2/+7 |
|\ \ \ |
|