summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4546738)
raw | patch | inline | side by side (parent: 4546738)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Sat, 15 Oct 2005 18:10:46 +0000 (11:10 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 15 Oct 2005 18:10:46 +0000 (11:10 -0700) |
Hi,
On Fri, 14 Oct 2005, Junio C Hamano wrote:
> Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
>
> > This patch looks bigger than it really is: The code to get the
> > default handle was refactored into a function, and is called
> > instead of curl_easy_duphandle() if that does not exist.
>
> I'd like to take Nick's config file patch first, which
> unfortunately interferes with your patch. I'd hate to ask you
> this, but could you rebase it on top of Nick's patch, [...]
No need to hate it. Here comes the rebased patch, and this time, I
actually tested it a bit.
Signed-off-by: Junio C Hamano <junkio@cox.net>
On Fri, 14 Oct 2005, Junio C Hamano wrote:
> Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
>
> > This patch looks bigger than it really is: The code to get the
> > default handle was refactored into a function, and is called
> > instead of curl_easy_duphandle() if that does not exist.
>
> I'd like to take Nick's config file patch first, which
> unfortunately interferes with your patch. I'd hate to ask you
> this, but could you rebase it on top of Nick's patch, [...]
No need to hate it. Here comes the rebased patch, and this time, I
actually tested it a bit.
Signed-off-by: Junio C Hamano <junkio@cox.net>
http-fetch.c | patch | blob | history |
diff --git a/http-fetch.c b/http-fetch.c
index 784aedfc700674cc79915004aee4031ab8efbff0..40bd0b430b247595b60480663fb7043535ffd229 100644 (file)
--- a/http-fetch.c
+++ b/http-fetch.c
#define curl_global_init(a) do { /* nothing */ } while(0)
#endif
+#if LIBCURL_VERSION_NUM < 0x070c04
+#define NO_CURL_EASY_DUPHANDLE
+#endif
+
#define PREV_BUF_SIZE 4096
#define RANGE_HEADER_SIZE 30
static int max_requests = -1;
static CURLM *curlm;
#endif
+#ifndef NO_CURL_EASY_DUPHANDLE
static CURL *curl_default;
+#endif
static struct curl_slist *pragma_header;
static struct curl_slist *no_pragma_header;
static struct curl_slist *no_range_header;
static int curl_ssl_verify = -1;
static char *ssl_cert = NULL;
+#if LIBCURL_VERSION_NUM >= 0x070902
static char *ssl_key = NULL;
+#endif
+#if LIBCURL_VERSION_NUM >= 0x070908
static char *ssl_capath = NULL;
+#endif
static char *ssl_cainfo = NULL;
struct buffer
void process_request_queue();
#endif
+static CURL* get_curl_handle()
+{
+ CURL* result = curl_easy_init();
+
+ curl_easy_setopt(result, CURLOPT_SSL_VERIFYPEER, curl_ssl_verify);
+#if LIBCURL_VERSION_NUM >= 0x070907
+ curl_easy_setopt(result, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
+#endif
+
+ if (ssl_cert != NULL)
+ curl_easy_setopt(result, CURLOPT_SSLCERT, ssl_cert);
+#if LIBCURL_VERSION_NUM >= 0x070902
+ if (ssl_key != NULL)
+ curl_easy_setopt(result, CURLOPT_SSLKEY, ssl_key);
+#endif
+#if LIBCURL_VERSION_NUM >= 0x070908
+ if (ssl_capath != NULL)
+ curl_easy_setopt(result, CURLOPT_CAPATH, ssl_capath);
+#endif
+ if (ssl_cainfo != NULL)
+ curl_easy_setopt(result, CURLOPT_CAINFO, ssl_cainfo);
+ curl_easy_setopt(result, CURLOPT_FAILONERROR, 1);
+
+ return result;
+}
+
struct active_request_slot *get_active_slot()
{
struct active_request_slot *slot = active_queue_head;
}
if (slot == NULL) {
newslot = xmalloc(sizeof(*newslot));
+#ifdef NO_CURL_EASY_DUPHANDLE
+ newslot->curl = get_curl_handle();
+#else
newslot->curl = curl_easy_duphandle(curl_default);
+#endif
newslot->in_use = 0;
newslot->next = NULL;
no_pragma_header = curl_slist_append(no_pragma_header, "Pragma:");
no_range_header = curl_slist_append(no_range_header, "Range:");
- curl_default = curl_easy_init();
-
- curl_easy_setopt(curl_default, CURLOPT_SSL_VERIFYPEER, curl_ssl_verify);
-#if LIBCURL_VERSION_NUM >= 0x070907
- curl_easy_setopt(curl_default, CURLOPT_NETRC, CURL_NETRC_OPTIONAL);
+#ifndef NO_CURL_EASY_DUPHANDLE
+ curl_default = get_curl_handle();
#endif
- if (ssl_cert != NULL)
- curl_easy_setopt(curl_default, CURLOPT_SSLCERT, ssl_cert);
- if (ssl_key != NULL)
- curl_easy_setopt(curl_default, CURLOPT_SSLKEY, ssl_key);
- if (ssl_capath != NULL)
- curl_easy_setopt(curl_default, CURLOPT_CAPATH, ssl_capath);
- if (ssl_cainfo != NULL)
- curl_easy_setopt(curl_default, CURLOPT_CAINFO, ssl_cainfo);
-
- curl_easy_setopt(curl_default, CURLOPT_FAILONERROR, 1);
-
alt = xmalloc(sizeof(*alt));
alt->base = url;
alt->got_indices = 0;
curl_slist_free_all(pragma_header);
curl_slist_free_all(no_pragma_header);
curl_slist_free_all(no_range_header);
+#ifndef NO_CURL_EASY_DUPHANDLE
curl_easy_cleanup(curl_default);
+#endif
slot = active_queue_head;
while (slot != NULL) {
curl_easy_cleanup(slot->curl);