aboutsummaryrefslogtreecommitdiffstats
path: root/http.h
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2007-12-09 18:04:57 +0100
committerJunio C Hamano <gitster@pobox.com>2007-12-09 12:18:42 -0800
commitcc3530e8f3f512dd407f64caf2c9916cb26afbc2 (patch)
tree7c746adfe20e3e206849f9a04eb579d7cfa50061 /http.h
parentace72086bbe1cd59bc15a0e5b043bdb98335af00 (diff)
downloadgit-cc3530e8f3f512dd407f64caf2c9916cb26afbc2.tar.gz
Cleanup variables in http.[ch]
Quite some variables defined as extern in http.h are only used in http.c, and some others, only defined in http.c, were not static. Signed-off-by: Mike Hommey <mh@glandium.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http.h')
-rw-r--r--http.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/http.h b/http.h
index 72abac20f8..fe1b0d153b 100644
--- a/http.h
+++ b/http.h
@@ -80,24 +80,6 @@ extern void http_cleanup(void);
extern int data_received;
extern int active_requests;
-#ifndef NO_CURL_EASY_DUPHANDLE
-extern CURL *curl_default;
-#endif
extern char curl_errorstr[CURL_ERROR_SIZE];
-extern int curl_ssl_verify;
-extern char *ssl_cert;
-#if LIBCURL_VERSION_NUM >= 0x070902
-extern char *ssl_key;
-#endif
-#if LIBCURL_VERSION_NUM >= 0x070908
-extern char *ssl_capath;
-#endif
-extern char *ssl_cainfo;
-extern long curl_low_speed_limit;
-extern long curl_low_speed_time;
-
-extern struct curl_slist *pragma_header;
-extern struct curl_slist *no_range_header;
-
#endif /* HTTP_H */