summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-07-25 21:16:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-07-25 21:16:51 +0000
commit1156252f925cd67dcb8c13a1f4328cc79bbf97f7 (patch)
tree4d162973a41cb4ca9746c25a3350811000d1df0f
parent29eda80f9669f5469f4cbe06269ad7a0da844495 (diff)
downloadgnurl-1156252f925cd67dcb8c13a1f4328cc79bbf97f7.tar.gz
gnurl-1156252f925cd67dcb8c13a1f4328cc79bbf97f7.tar.bz2
gnurl-1156252f925cd67dcb8c13a1f4328cc79bbf97f7.zip
Added http_close()
-rw-r--r--lib/http.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/http.h b/lib/http.h
index 372b670c5..0fb98e108 100644
--- a/lib/http.h
+++ b/lib/http.h
@@ -41,8 +41,11 @@
* ------------------------------------------------------------
****************************************************************************/
+/* protocol-specific functions set up to be called by the main engine */
+
CURLcode http(struct connectdata *conn);
CURLcode http_done(struct connectdata *conn);
CURLcode http_connect(struct connectdata *conn);
+CURLcode http_close(struct connectdata *conn);
#endif