summaryrefslogtreecommitdiff
path: root/lib/http.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-01-07 22:48:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2010-01-07 22:48:28 +0000
commit8524c04ca98d9c0b5f90d685135e0466e0d8b386 (patch)
tree1b8154776ed45f987c33ed6a27b5878eb88df8e1 /lib/http.h
parent31630203b1433b89249a5dd838e481fdd78a9630 (diff)
downloadcurl-8524c04ca98d9c0b5f90d685135e0466e0d8b386.tar.gz
removed a parameter from the Curl_http_readwrite_headers() prototype to remove
the need for the struct forward declaration from http.h which caused problems with gcc 2.96 and quite frankly the parameter wasn't necessary anyway
Diffstat (limited to 'lib/http.h')
-rw-r--r--lib/http.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/http.h b/lib/http.h
index f6781cc99..155027d99 100644
--- a/lib/http.h
+++ b/lib/http.h
@@ -25,8 +25,6 @@
***************************************************************************/
#ifndef CURL_DISABLE_HTTP
-struct SingleRequest;
-
extern const struct Curl_handler Curl_handler_http;
#ifdef USE_SSL
@@ -127,7 +125,6 @@ struct HTTP {
CURLcode Curl_http_readwrite_headers(struct SessionHandle *data,
struct connectdata *conn,
- struct SingleRequest *k,
ssize_t *nread,
bool *stop_reading);