diff options
| author | Junio C Hamano <gitster@pobox.com> | 2008-03-02 15:11:26 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2008-03-02 15:11:26 -0800 |
| commit | 7ab9f8f8b12853d4cb0e45031bf2ee9a0517ad22 (patch) | |
| tree | e49451e1e0e6c60c424c8c6334b9dacc6b9577f7 /walker.h | |
| parent | d82b21b57a50f7820c57a13c09232077365095c7 (diff) | |
| parent | 9fc6440d783ca773353880aa97c23ed9c640d3c0 (diff) | |
| download | git-7ab9f8f8b12853d4cb0e45031bf2ee9a0517ad22.tar.gz | |
Merge branch 'mh/maint-http-proxy-fix'
* 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 */ |
