diff options
author | Nick Hengeveld <nickh@reactrix.com> | 2006-03-10 20:18:01 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-10 23:01:48 -0800 |
commit | baa7b67d091acf4c666e79e386712bd5ea79326c (patch) | |
tree | 852116fd35adf81371c03bc50abd272ba2c61da4 /http.h | |
parent | 5241bfe6d1593ad775dd79a5f598f66f479968b5 (diff) | |
download | git-baa7b67d091acf4c666e79e386712bd5ea79326c.tar.gz |
HTTP slot reuse fixes
Incorporate into http-push a fix related to accessing slot results after
the slot was reused, and fix a case in run_active_slot where a
finished slot wasn't detected if the slot was reused.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'http.h')
-rw-r--r-- | http.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -35,6 +35,7 @@ struct active_request_slot int in_use; CURLcode curl_result; long http_code; + int *finished; struct slot_results *results; void *callback_data; void (*callback_func)(void *data); |