diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-03-08 02:20:37 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-03-08 02:20:37 -0800 |
commit | 972b9a85301e1576c0fb84555396015663a65452 (patch) | |
tree | 0498355725403517d839f7400803d26e4527806d /walker.h | |
parent | 1f1300b4f16591feaa1387e967752af33d4fffda (diff) | |
parent | 9fc6440d783ca773353880aa97c23ed9c640d3c0 (diff) | |
download | git-972b9a85301e1576c0fb84555396015663a65452.tar.gz git-972b9a85301e1576c0fb84555396015663a65452.tar.xz |
Merge branch 'mh/maint-http-proxy-fix' into maint
* mh/maint-http-proxy-fix:
Set proxy override with http_init()
Diffstat (limited to 'walker.h')
-rw-r--r-- | walker.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,8 @@ #ifndef WALKER_H #define WALKER_H +#include "remote.h" + struct walker { void *data; 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); -struct walker *get_http_walker(const char *url); +struct walker *get_http_walker(const char *url, struct remote *remote); #endif /* WALKER_H */ |