1 #ifndef HEADER_CURL_QSSL_H
2 #define HEADER_CURL_QSSL_H
3 /***************************************************************************
5 * Project ___| | | | _ \| |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
10 * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
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.
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.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ***************************************************************************/
24 #include "curl_setup.h"
27 * This header should only be needed to get included by sslgen.c and qssl.c
33 int Curl_qsossl_init(void);
34 void Curl_qsossl_cleanup(void);
35 CURLcode Curl_qsossl_connect(struct connectdata * conn, int sockindex);
36 void Curl_qsossl_close(struct connectdata *conn, int sockindex);
37 int Curl_qsossl_close_all(struct SessionHandle * data);
38 int Curl_qsossl_shutdown(struct connectdata * conn, int sockindex);
40 size_t Curl_qsossl_version(char * buffer, size_t size);
41 int Curl_qsossl_check_cxn(struct connectdata * cxn);
43 /* API setup for QsoSSL */
44 #define curlssl_init Curl_qsossl_init
45 #define curlssl_cleanup Curl_qsossl_cleanup
46 #define curlssl_connect Curl_qsossl_connect
48 /* No session handling for QsoSSL */
49 #define curlssl_session_free(x) Curl_nop_stmt
50 #define curlssl_close_all Curl_qsossl_close_all
51 #define curlssl_close Curl_qsossl_close
52 #define curlssl_shutdown(x,y) Curl_qsossl_shutdown(x,y)
53 #define curlssl_set_engine(x,y) CURLE_NOT_BUILT_IN
54 #define curlssl_set_engine_default(x) CURLE_NOT_BUILT_IN
55 #define curlssl_engines_list(x) NULL
56 #define curlssl_version Curl_qsossl_version
57 #define curlssl_check_cxn(x) Curl_qsossl_check_cxn(x)
58 #define curlssl_data_pending(x,y) 0
59 #endif /* USE_QSOSSL */
61 #endif /* HEADER_CURL_QSSL_H */