Re: [PATCH] added #define DEFAULT_MAX_REQUESTS for USE_CURL_MULTI mode
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:44:07
Grégoire Barbier [off-list ref] writes:
quoted hunk
From: Gregoire Barbier <redacted> I'm not sure of which value is the good one, but 4 seems good since it's not very high which would lead to resouce consumption problems. --- http.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)diff --git a/http.c b/http.c index 8b04ae9..7b1bcb8 100644 --- a/http.c +++ b/http.c@@ -4,6 +4,7 @@ int data_received; int active_requests = 0; #ifdef USE_CURL_MULTI +#define DEFAULT_MAX_REQUESTS 4 static int max_requests = -1; static CURLM *curlm; #endif
Why is this needed? How does this interact with an existing #define in http.h that defines it to 5?