From 5d5c78b47fa75413964c8279f0b3d9954fe70fb9 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 17 Jan 2015 16:41:03 +0000 Subject: vtls: Removed unimplemented overrides of curlssl_close_all() Carrying on from commit 037cd0d991, removed the following unimplemented instances of curlssl_close_all(): Curl_axtls_close_all() Curl_darwinssl_close_all() Curl_cyassl_close_all() Curl_gskit_close_all() Curl_gtls_close_all() Curl_nss_close_all() Curl_polarssl_close_all() --- lib/vtls/gtls.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/vtls/gtls.h') diff --git a/lib/vtls/gtls.h b/lib/vtls/gtls.h index a06a238c7..c3867e540 100644 --- a/lib/vtls/gtls.h +++ b/lib/vtls/gtls.h @@ -35,10 +35,6 @@ CURLcode Curl_gtls_connect_nonblocking(struct connectdata *conn, int sockindex, bool *done); -/* tell GnuTLS to close down all open information regarding connections (and - thus session ID caching etc) */ -void Curl_gtls_close_all(struct SessionHandle *data); - /* close a SSL connection */ void Curl_gtls_close(struct connectdata *conn, int sockindex); @@ -64,7 +60,7 @@ bool Curl_gtls_cert_status_request(void); #define curlssl_connect Curl_gtls_connect #define curlssl_connect_nonblocking Curl_gtls_connect_nonblocking #define curlssl_session_free(x) Curl_gtls_session_free(x) -#define curlssl_close_all Curl_gtls_close_all +#define curlssl_close_all(x) ((void)x) #define curlssl_close Curl_gtls_close #define curlssl_shutdown(x,y) Curl_gtls_shutdown(x,y) #define curlssl_set_engine(x,y) ((void)x, (void)y, CURLE_NOT_BUILT_IN) -- cgit v1.2.3