aboutsummaryrefslogtreecommitdiff
path: root/lib/http.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-11 11:13:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-11 11:13:01 +0000
commit08ef208fb78fb2eabc5cec08c23e74e251eac898 (patch)
treec52fa36be6197717f9ab12031a623091d785b51c /lib/http.h
parent8c45e2a6415a3a12231b88cd2791141ec809d163 (diff)
added disable-[protocol] support, largely provided by Miklos Nemeth
Diffstat (limited to 'lib/http.h')
-rw-r--r--lib/http.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http.h b/lib/http.h
index ef5bedebb..2650106cc 100644
--- a/lib/http.h
+++ b/lib/http.h
@@ -23,7 +23,7 @@
*
* $Id$
*****************************************************************************/
-
+#ifndef CURL_DISABLE_HTTP
/* ftp can use this as well */
CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn,
int tunnelsocket,
@@ -38,5 +38,5 @@ CURLcode Curl_http_connect(struct connectdata *conn);
void Curl_httpchunk_init(struct connectdata *conn);
CHUNKcode Curl_httpchunk_read(struct connectdata *conn, char *datap,
ssize_t length, ssize_t *wrote);
-
+#endif
#endif