Imported Upstream version 7.40.0
[platform/upstream/curl.git] / lib / vtls / gskit.h
1 #ifndef HEADER_CURL_GSKIT_H
2 #define HEADER_CURL_GSKIT_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2014, 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 http://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 void Curl_gskit_close_all(struct SessionHandle * data);
40 int Curl_gskit_shutdown(struct connectdata * conn, int sockindex);
41
42 size_t Curl_gskit_version(char * buffer, size_t size);
43 int Curl_gskit_check_cxn(struct connectdata * cxn);
44
45 /* this backend supports CURLOPT_CERTINFO */
46 #define have_curlssl_certinfo 1
47
48 /* API setup for GSKit */
49 #define curlssl_init Curl_gskit_init
50 #define curlssl_cleanup Curl_gskit_cleanup
51 #define curlssl_connect Curl_gskit_connect
52 #define curlssl_connect_nonblocking Curl_gskit_connect_nonblocking
53
54 /*  No session handling for GSKit */
55 #define curlssl_session_free(x) Curl_nop_stmt
56 #define curlssl_close_all Curl_gskit_close_all
57 #define curlssl_close Curl_gskit_close
58 #define curlssl_shutdown(x,y) Curl_gskit_shutdown(x,y)
59 #define curlssl_set_engine(x,y) CURLE_NOT_BUILT_IN
60 #define curlssl_set_engine_default(x) CURLE_NOT_BUILT_IN
61 #define curlssl_engines_list(x) NULL
62 #define curlssl_version Curl_gskit_version
63 #define curlssl_check_cxn(x) Curl_gskit_check_cxn(x)
64 #define curlssl_data_pending(x,y) 0
65 #define curlssl_random(x,y,z) -1
66 #define CURL_SSL_BACKEND CURLSSLBACKEND_GSKIT
67 #endif /* USE_GSKIT */
68
69 #endif /* HEADER_CURL_GSKIT_H */