diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-17 16:41:03 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-17 16:41:03 +0000 |
commit | 5d5c78b47fa75413964c8279f0b3d9954fe70fb9 (patch) | |
tree | 3398503472b6120ba3fc87d3951dfdc130661515 /lib/vtls/gskit.c | |
parent | 8bb3443a210e9aed888055b8a3d39646ca234c49 (diff) | |
download | curl-5d5c78b47fa75413964c8279f0b3d9954fe70fb9.tar.gz |
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()
Diffstat (limited to 'lib/vtls/gskit.c')
-rw-r--r-- | lib/vtls/gskit.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/vtls/gskit.c b/lib/vtls/gskit.c index ac05f05bb..8eb7292d0 100644 --- a/lib/vtls/gskit.c +++ b/lib/vtls/gskit.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -986,13 +986,6 @@ void Curl_gskit_close(struct connectdata *conn, int sockindex) } -void Curl_gskit_close_all(struct SessionHandle *data) -{ - /* Unimplemented. */ - (void) data; -} - - int Curl_gskit_shutdown(struct connectdata *conn, int sockindex) { struct ssl_connect_data *connssl = &conn->ssl[sockindex]; |