summaryrefslogtreecommitdiff
path: root/libcurl/src/lib/vtls/gskit.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcurl/src/lib/vtls/gskit.h')
-rw-r--r--libcurl/src/lib/vtls/gskit.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/libcurl/src/lib/vtls/gskit.h b/libcurl/src/lib/vtls/gskit.h
deleted file mode 100644
index 58e15b6..0000000
--- a/libcurl/src/lib/vtls/gskit.h
+++ /dev/null
@@ -1,71 +0,0 @@
-#ifndef HEADER_CURL_GSKIT_H
-#define HEADER_CURL_GSKIT_H
-/***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
- * 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
- * are also available at http://curl.haxx.se/docs/copyright.html.
- *
- * You may opt to use, copy, modify, merge, publish, distribute and/or sell
- * copies of the Software, and permit persons to whom the Software is
- * furnished to do so, under the terms of the COPYING file.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ***************************************************************************/
-#include "../curl_setup.h"
-
-/*
- * This header should only be needed to get included by vtls.c and gskit.c
- */
-
-#include "../urldata.h"
-
-#ifdef USE_GSKIT
-CURL_STATIC int Curl_gskit_init(void);
-CURL_STATIC void Curl_gskit_cleanup(void);
-CURL_STATIC CURLcode Curl_gskit_connect(struct connectdata *conn, int sockindex);
-CURL_STATIC CURLcode Curl_gskit_connect_nonblocking(struct connectdata *conn,
- int sockindex, bool *done);
-CURL_STATIC void Curl_gskit_close(struct connectdata *conn, int sockindex);
-CURL_STATIC int Curl_gskit_shutdown(struct connectdata *conn, int sockindex);
-
-CURL_STATIC size_t Curl_gskit_version(char *buffer, size_t size);
-CURL_STATIC int Curl_gskit_check_cxn(struct connectdata *cxn);
-
-/* Set the API backend definition to GSKit */
-#define CURL_SSL_BACKEND CURLSSLBACKEND_GSKIT
-
-/* this backend supports CURLOPT_CERTINFO */
-#define have_curlssl_certinfo 1
-
-/* API setup for GSKit */
-#define curlssl_init Curl_gskit_init
-#define curlssl_cleanup Curl_gskit_cleanup
-#define curlssl_connect Curl_gskit_connect
-#define curlssl_connect_nonblocking Curl_gskit_connect_nonblocking
-
-/* No session handling for GSKit */
-#define curlssl_session_free(x) Curl_nop_stmt
-#define curlssl_close_all(x) ((void)x)
-#define curlssl_close Curl_gskit_close
-#define curlssl_shutdown(x,y) Curl_gskit_shutdown(x,y)
-#define curlssl_set_engine(x,y) CURLE_NOT_BUILT_IN
-#define curlssl_set_engine_default(x) CURLE_NOT_BUILT_IN
-#define curlssl_engines_list(x) NULL
-#define curlssl_version Curl_gskit_version
-#define curlssl_check_cxn(x) Curl_gskit_check_cxn(x)
-#define curlssl_data_pending(x,y) 0
-#define curlssl_random(x,y,z) -1
-
-#endif /* USE_GSKIT */
-
-#endif /* HEADER_CURL_GSKIT_H */