From: Daniel Stenberg Date: Tue, 25 Jul 2000 21:16:51 +0000 (+0000) Subject: Added http_close() X-Git-Tag: curl-7_1_1~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1156252f925cd67dcb8c13a1f4328cc79bbf97f7;p=thirdparty%2Fcurl.git Added http_close() --- diff --git a/lib/http.h b/lib/http.h index 372b670c5e..0fb98e1081 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