1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-27 18:06:36 +02:00

Set proxy override with http_init()

In transport.c, proxy setting (the one from the remote conf) was set through
curl_easy_setopt() call, while http.c already does the same with the
http.proxy setting. We now just use this infrastructure instead, and make
http_init() now take the struct remote as argument so that it can take the
http_proxy setting from there, and any other property that would be added
later.

At the same time, we make get_http_walker() take a struct remote argument
too, and pass it to http_init(), which makes remote defined proxy be used
for more than get_refs_via_curl().

We leave out http-fetch and http-push, which don't use remotes for the
moment, purposefully.

Signed-off-by: Mike Hommey <mh@glandium.org>
Acked-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Mike Hommey 2008-02-27 21:35:50 +01:00 committed by Junio C Hamano
parent 81fa145917
commit 9fc6440d78
7 changed files with 22 additions and 12 deletions

View File

@ -59,7 +59,7 @@ int cmd_http_fetch(int argc, const char **argv, const char *prefix)
url = rewritten_url; url = rewritten_url;
} }
walker = get_http_walker(url); walker = get_http_walker(url, NULL);
walker->get_tree = get_tree; walker->get_tree = get_tree;
walker->get_history = get_history; walker->get_history = get_history;
walker->get_all = get_all; walker->get_all = get_all;

View File

@ -2233,7 +2233,7 @@ int main(int argc, char **argv)
memset(remote_dir_exists, -1, 256); memset(remote_dir_exists, -1, 256);
http_init(); http_init(NULL);
no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:"); no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");

View File

@ -902,13 +902,13 @@ static void cleanup(struct walker *walker)
curl_slist_free_all(data->no_pragma_header); curl_slist_free_all(data->no_pragma_header);
} }
struct walker *get_http_walker(const char *url) struct walker *get_http_walker(const char *url, struct remote *remote)
{ {
char *s; char *s;
struct walker_data *data = xmalloc(sizeof(struct walker_data)); struct walker_data *data = xmalloc(sizeof(struct walker_data));
struct walker *walker = xmalloc(sizeof(struct walker)); struct walker *walker = xmalloc(sizeof(struct walker));
http_init(); http_init(remote);
data->no_pragma_header = curl_slist_append(NULL, "Pragma:"); data->no_pragma_header = curl_slist_append(NULL, "Pragma:");

10
http.c
View File

@ -218,13 +218,16 @@ static CURL* get_curl_handle(void)
return result; return result;
} }
void http_init(void) void http_init(struct remote *remote)
{ {
char *low_speed_limit; char *low_speed_limit;
char *low_speed_time; char *low_speed_time;
curl_global_init(CURL_GLOBAL_ALL); 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"); pragma_header = curl_slist_append(pragma_header, "Pragma: no-cache");
#ifdef USE_CURL_MULTI #ifdef USE_CURL_MULTI
@ -314,6 +317,11 @@ void http_cleanup(void)
curl_slist_free_all(pragma_header); curl_slist_free_all(pragma_header);
pragma_header = NULL; pragma_header = NULL;
if (curl_http_proxy) {
free(curl_http_proxy);
curl_http_proxy = NULL;
}
} }
struct active_request_slot *get_active_slot(void) struct active_request_slot *get_active_slot(void)

3
http.h
View File

@ -7,6 +7,7 @@
#include <curl/easy.h> #include <curl/easy.h>
#include "strbuf.h" #include "strbuf.h"
#include "remote.h"
/* /*
* We detect based on the cURL version if multi-transfer is * We detect based on the cURL version if multi-transfer is
@ -83,7 +84,7 @@ extern void add_fill_function(void *data, int (*fill)(void *));
extern void step_active_slots(void); extern void step_active_slots(void);
#endif #endif
extern void http_init(void); extern void http_init(struct remote *remote);
extern void http_cleanup(void); extern void http_cleanup(void);
extern int data_received; extern int data_received;

View File

@ -442,7 +442,8 @@ static struct ref *get_refs_via_curl(struct transport *transport)
struct ref *last_ref = NULL; struct ref *last_ref = NULL;
if (!transport->data) if (!transport->data)
transport->data = get_http_walker(transport->url); transport->data = get_http_walker(transport->url,
transport->remote);
refs_url = xmalloc(strlen(transport->url) + 11); refs_url = xmalloc(strlen(transport->url) + 11);
sprintf(refs_url, "%s/info/refs", transport->url); sprintf(refs_url, "%s/info/refs", transport->url);
@ -453,9 +454,6 @@ static struct ref *get_refs_via_curl(struct transport *transport)
curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, fwrite_buffer); curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, fwrite_buffer);
curl_easy_setopt(slot->curl, CURLOPT_URL, refs_url); curl_easy_setopt(slot->curl, CURLOPT_URL, refs_url);
curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, NULL); curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, NULL);
if (transport->remote->http_proxy)
curl_easy_setopt(slot->curl, CURLOPT_PROXY,
transport->remote->http_proxy);
if (start_active_slot(slot)) { if (start_active_slot(slot)) {
run_active_slot(slot); run_active_slot(slot);
@ -509,7 +507,8 @@ static int fetch_objs_via_curl(struct transport *transport,
int nr_objs, struct ref **to_fetch) int nr_objs, struct ref **to_fetch)
{ {
if (!transport->data) if (!transport->data)
transport->data = get_http_walker(transport->url); transport->data = get_http_walker(transport->url,
transport->remote);
return fetch_objs_via_walker(transport, nr_objs, to_fetch); return fetch_objs_via_walker(transport, nr_objs, to_fetch);
} }

View File

@ -1,6 +1,8 @@
#ifndef WALKER_H #ifndef WALKER_H
#define WALKER_H #define WALKER_H
#include "remote.h"
struct walker { struct walker {
void *data; void *data;
int (*fetch_ref)(struct walker *, char *ref, unsigned char *sha1); int (*fetch_ref)(struct walker *, char *ref, unsigned char *sha1);
@ -32,6 +34,6 @@ int walker_fetch(struct walker *impl, int targets, char **target,
void walker_free(struct walker *walker); void walker_free(struct walker *walker);
struct walker *get_http_walker(const char *url); struct walker *get_http_walker(const char *url, struct remote *remote);
#endif /* WALKER_H */ #endif /* WALKER_H */