From: Sven Verdoolaege <skimo@liacs.nl>
To: git@vger.kernel.org
Cc: Sven Verdoolaege <skimo@liacs.nl>
Subject: [PATCH 3/5] http.h: make fill_active_slots a function pointer
Date: Fri, 4 May 2007 12:56:41 +0200 [thread overview]
Message-ID: <11782762032846-git-send-email-skimo@liacs.nl> (raw)
In-Reply-To: <11782762032207-git-send-email-skimo@liacs.nl>
From: Sven Verdoolaege <skimo@kotnet.org>
This allows us to use the methods provided by http.c
from within libgit, in particular config.c.
Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
---
http-fetch.c | 5 ++++-
http-push.c | 5 ++++-
http.h | 2 +-
3 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/http-fetch.c b/http-fetch.c
index 09baedc..53fb2a9 100644
--- a/http-fetch.c
+++ b/http-fetch.c
@@ -317,7 +317,7 @@ static void release_object_request(struct object_request *obj_req)
}
#ifdef USE_CURL_MULTI
-void fill_active_slots(void)
+static void fetch_fill_active_slots(void)
{
struct object_request *obj_req = object_queue_head;
struct active_request_slot *slot = active_queue_head;
@@ -1031,6 +1031,9 @@ int main(int argc, const char **argv)
}
url = argv[arg];
+#ifdef USE_CURL_MULTI
+ fill_active_slots = fetch_fill_active_slots;
+#endif
http_init();
no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
diff --git a/http-push.c b/http-push.c
index e3f7675..d4c850b 100644
--- a/http-push.c
+++ b/http-push.c
@@ -794,7 +794,7 @@ static void finish_request(struct transfer_request *request)
}
#ifdef USE_CURL_MULTI
-void fill_active_slots(void)
+static void push_fill_active_slots(void)
{
struct transfer_request *request = request_queue_head;
struct transfer_request *next;
@@ -2355,6 +2355,9 @@ int main(int argc, char **argv)
memset(remote_dir_exists, -1, 256);
+#ifdef USE_CURL_MULTI
+ fill_active_slots = push_fill_active_slots;
+#endif
http_init();
no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
diff --git a/http.h b/http.h
index 69b6b66..7a41cde 100644
--- a/http.h
+++ b/http.h
@@ -69,7 +69,7 @@ extern void finish_all_active_slots(void);
extern void release_active_slot(struct active_request_slot *slot);
#ifdef USE_CURL_MULTI
-extern void fill_active_slots(void);
+extern void (*fill_active_slots)(void);
extern void step_active_slots(void);
#endif
--
1.5.2.rc1.25.g889f-dirty
next prev parent reply other threads:[~2007-05-04 11:00 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-04 10:56 Initial support for cloning submodules Sven Verdoolaege
2007-05-04 10:56 ` [PATCH 1/5] Add dump-config Sven Verdoolaege
2007-05-04 10:56 ` [PATCH 2/5] git-config: add --remote option for reading config from remote repo Sven Verdoolaege
2007-05-04 21:03 ` Frank Lichtenheld
2007-05-04 21:10 ` Sven Verdoolaege
2007-05-04 21:35 ` Frank Lichtenheld
2007-05-04 10:56 ` Sven Verdoolaege [this message]
2007-05-04 10:56 ` [PATCH 4/5] git-config: read remote config files over HTTP Sven Verdoolaege
2007-05-04 10:56 ` [PATCH 5/5] git-clone: add --submodules for cloning submodules Sven Verdoolaege
2007-05-04 22:52 ` Initial support " Junio C Hamano
2007-05-05 8:14 ` Sven Verdoolaege
2007-05-05 8:46 ` Junio C Hamano
2007-05-06 4:13 ` Alon Ziv
2007-05-18 19:33 ` Sven Verdoolaege
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=11782762032846-git-send-email-skimo@liacs.nl \
--to=skimo@liacs.nl \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).