72 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #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
 | |
| int Curl_gskit_init(void);
 | |
| void Curl_gskit_cleanup(void);
 | |
| CURLcode Curl_gskit_connect(struct connectdata *conn, int sockindex);
 | |
| CURLcode Curl_gskit_connect_nonblocking(struct connectdata *conn,
 | |
|                                         int sockindex, bool *done);
 | |
| void Curl_gskit_close(struct connectdata *conn, int sockindex);
 | |
| int Curl_gskit_shutdown(struct connectdata *conn, int sockindex);
 | |
| 
 | |
| size_t Curl_gskit_version(char *buffer, size_t size);
 | |
| 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 */
 | 
