From 1156252f925cd67dcb8c13a1f4328cc79bbf97f7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 25 Jul 2000 21:16:51 +0000 Subject: [PATCH] Added http_close() --- lib/http.h | 3 +++ 1 file changed, 3 insertions(+) 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