Make function to refill http queue a callback

This eliminates the last function provided by the code using http.h as
a global symbol, so it should be possible to have multiple programs
using http.h in the same executable, and it also adds an argument to
that callback, so that info can be passed into the callback without
being global.

Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Daniel Barkalow
2007-09-10 23:02:34 -04:00
committed by Junio C Hamano
parent 45c1741235
commit fc57b6aaa5
4 changed files with 36 additions and 7 deletions

View File

@ -317,7 +317,7 @@ static void release_object_request(struct object_request *obj_req)
}
#ifdef USE_CURL_MULTI
int fill_active_slot(void)
static int fill_active_slot(void *unused)
{
struct object_request *obj_req;
@ -1035,6 +1035,10 @@ int main(int argc, const char **argv)
alt->packs = NULL;
alt->next = NULL;
#ifdef USE_CURL_MULTI
add_fill_function(NULL, fill_active_slot);
#endif
if (pull(commits, commit_id, write_ref, url))
rc = 1;