git-svnimport.perl: fix for 'arg list too long...'
[gitweb.git] / http.h
diff --git a/http.h b/http.h
index ed4ea3340e48307e087a311136d1fe4f74b2d607..d6dc9d89fbc4be0fd5acd3e7bc50302da69f3d05 100644 (file)
--- a/http.h
+++ b/http.h
 #define NO_CURL_EASY_DUPHANDLE
 #endif
 
+struct slot_results
+{
+       CURLcode curl_result;
+       long http_code;
+};
+
 struct active_request_slot
 {
        CURL *curl;
@@ -29,6 +35,7 @@ struct active_request_slot
        int in_use;
        CURLcode curl_result;
        long http_code;
+       struct slot_results *results;
        void *callback_data;
        void (*callback_func)(void *data);
        struct active_request_slot *next;