From 14c98218845ad2acbd42b8d913503ff6fb3fd2ac Mon Sep 17 00:00:00 2001 From: Sam Vilain Date: Tue, 4 Dec 2007 10:48:54 +1300 Subject: Add remote..proxy As well as allowing a default http.proxy option, allow it to be set per-remote. Signed-off-by: Sam Vilain Signed-off-by: Junio C Hamano --- remote.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'remote.h') diff --git a/remote.h b/remote.h index b10036cae6..86e036d610 100644 --- a/remote.h +++ b/remote.h @@ -25,6 +25,11 @@ struct remote { const char *receivepack; const char *uploadpack; + + /* + * for curl remotes only + */ + char *http_proxy; }; struct remote *remote_get(const char *name); -- cgit v1.3-5-g9baa