aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-07 23:51:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-07 23:51:41 +0000
commita23db7b7c7a183cbab8eadc59d73aaa159d301de (patch)
treef3dd38fd456ab22ddc614d92fcde1f00bd2ff127 /lib/http.c
parentf6b6dff46a213f2533b9af4e531466d214546a5b (diff)
"Transfer-Encoding: chunked" support added
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 71ef7aa35..2da7cbf72 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -104,6 +104,7 @@
#include "memdebug.h"
#endif
+/* ------------------------------------------------------------------------- */
/*
* The add_buffer series of functions are used to build one large memory chunk
* from repeated function invokes. Used so that the entire HTTP request can
@@ -205,7 +206,7 @@ CURLcode add_buffer(send_buffer *in, void *inptr, size_t size)
}
/* end of the add_buffer functions */
-/*****************************************************************************/
+/* ------------------------------------------------------------------------- */
/*
* Read everything until a newline.
@@ -309,6 +310,9 @@ CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn,
return CURLE_OK;
}
+/*
+ * HTTP stuff to do at connect-time.
+ */
CURLcode Curl_http_connect(struct connectdata *conn)
{
struct UrlData *data;