diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-12-13 22:03:17 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-13 22:03:17 -0800 |
commit | fc545433bdab7ec17e6609d2249771d407370a4d (patch) | |
tree | 3031c9ac8b14137516b0f6deb55f2084fcdb432b /http.h | |
parent | df6246ed78d040f06f095dd62d8db07a0aa19a96 (diff) | |
parent | 093c44a3600323c3ca7a8d28a0d2ba2bc145dd47 (diff) | |
download | git-fc545433bdab7ec17e6609d2249771d407370a4d.tar.gz git-fc545433bdab7ec17e6609d2249771d407370a4d.tar.xz |
Merge branch 'mf/curl-select-fdset' into maint
* mf/curl-select-fdset:
http: drop "local" member from request struct
http.c: Rely on select instead of tracking whether data was received
http.c: Use timeout suggested by curl instead of fixed 50ms timeout
http.c: Use curl_multi_fdset to select on curl fds instead of just sleeping
Diffstat (limited to 'http.h')
-rw-r--r-- | http.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -49,7 +49,6 @@ struct slot_results { struct active_request_slot { CURL *curl; - FILE *local; int in_use; CURLcode curl_result; long http_code; @@ -89,7 +88,6 @@ extern void step_active_slots(void); extern void http_init(struct remote *remote, const char *url); extern void http_cleanup(void); -extern int data_received; extern int active_requests; extern int http_is_verbose; extern size_t http_post_buffer; |