1 #ifndef HEADER_CURL_GSKIT_H 2 #define HEADER_CURL_GSKIT_H 3 /*************************************************************************** 4 * _ _ ____ _ 5 * Project ___| | | | _ \| | 6 * / __| | | | |_) | | 7 * | (__| |_| | _ <| |___ 8 * \___|\___/|_| \_\_____| 9 * 10 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. 11 * 12 * This software is licensed as described in the file COPYING, which 13 * you should have received as part of this distribution. The terms 14 * are also available at https://curl.haxx.se/docs/copyright.html. 15 * 16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell 17 * copies of the Software, and permit persons to whom the Software is 18 * furnished to do so, under the terms of the COPYING file. 19 * 20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 * KIND, either express or implied. 22 * 23 ***************************************************************************/ 24 #include "curl_setup.h" 25 26 /* 27 * This header should only be needed to get included by vtls.c and gskit.c 28 */ 29 30 #include "urldata.h" 31 32 #ifdef USE_GSKIT 33 int Curl_gskit_init(void); 34 void Curl_gskit_cleanup(void); 35 CURLcode Curl_gskit_connect(struct connectdata *conn, int sockindex); 36 CURLcode Curl_gskit_connect_nonblocking(struct connectdata *conn, 37 int sockindex, bool *done); 38 void Curl_gskit_close(struct connectdata *conn, int sockindex); 39 int Curl_gskit_shutdown(struct connectdata *conn, int sockindex); 40 41 size_t Curl_gskit_version(char *buffer, size_t size); 42 int Curl_gskit_check_cxn(struct connectdata *cxn); 43 44 /* Set the API backend definition to GSKit */ 45 #define CURL_SSL_BACKEND CURLSSLBACKEND_GSKIT 46 47 /* this backend supports CURLOPT_CERTINFO */ 48 #define have_curlssl_certinfo 1 49 50 /* API setup for GSKit */ 51 #define curlssl_init Curl_gskit_init 52 #define curlssl_cleanup Curl_gskit_cleanup 53 #define curlssl_connect Curl_gskit_connect 54 #define curlssl_connect_nonblocking Curl_gskit_connect_nonblocking 55 56 /* No session handling for GSKit */ 57 #define curlssl_session_free(x) Curl_nop_stmt 58 #define curlssl_close_all(x) ((void)x) 59 #define curlssl_close Curl_gskit_close 60 #define curlssl_shutdown(x,y) Curl_gskit_shutdown(x,y) 61 #define curlssl_set_engine(x,y) CURLE_NOT_BUILT_IN 62 #define curlssl_set_engine_default(x) CURLE_NOT_BUILT_IN 63 #define curlssl_engines_list(x) NULL 64 #define curlssl_version Curl_gskit_version 65 #define curlssl_check_cxn(x) Curl_gskit_check_cxn(x) 66 #define curlssl_data_pending(x,y) 0 67 #define curlssl_random(x,y,z) (x=x, y=y, z=z, CURLE_NOT_BUILT_IN) 68 69 #endif /* USE_GSKIT */ 70 71 #endif /* HEADER_CURL_GSKIT_H */ 72