aboutsummaryrefslogtreecommitdiffstats
path: root/http.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-03-02 15:11:26 -0800
committerJunio C Hamano <gitster@pobox.com>2008-03-02 15:11:26 -0800
commit7ab9f8f8b12853d4cb0e45031bf2ee9a0517ad22 (patch)
treee49451e1e0e6c60c424c8c6334b9dacc6b9577f7 /http.c
parentMerge branch 'cb/http-test' (diff)
parentSet proxy override with http_init() (diff)
downloadgit-7ab9f8f8b12853d4cb0e45031bf2ee9a0517ad22.tar.gz
git-7ab9f8f8b12853d4cb0e45031bf2ee9a0517ad22.zip
Merge branch 'mh/maint-http-proxy-fix'
* mh/maint-http-proxy-fix: Set proxy override with http_init()
Diffstat (limited to 'http.c')
-rw-r--r--http.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/http.c b/http.c
index 5925d07478..8e554c0969 100644
--- a/http.c
+++ b/http.c
@@ -218,13 +218,16 @@ static CURL* get_curl_handle(void)
return result;
}
-void http_init(void)
+void http_init(struct remote *remote)
{
char *low_speed_limit;
char *low_speed_time;
curl_global_init(CURL_GLOBAL_ALL);
+ if (remote && remote->http_proxy)
+ curl_http_proxy = xstrdup(remote->http_proxy);
+
pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
#ifdef USE_CURL_MULTI
@@ -314,6 +317,11 @@ void http_cleanup(void)
curl_slist_free_all(pragma_header);
pragma_header = NULL;
+
+ if (curl_http_proxy) {
+ free(curl_http_proxy);
+ curl_http_proxy = NULL;
+ }
}
struct active_request_slot *get_active_slot(void)