diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-07-25 21:16:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-07-25 21:16:51 +0000 |
commit | 1156252f925cd67dcb8c13a1f4328cc79bbf97f7 (patch) | |
tree | 4d162973a41cb4ca9746c25a3350811000d1df0f /lib/http.h | |
parent | 29eda80f9669f5469f4cbe06269ad7a0da844495 (diff) | |
download | curl-1156252f925cd67dcb8c13a1f4328cc79bbf97f7.tar.gz |
Added http_close()
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 3 |
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 |