Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl-7.19.0 / lib / qssl.h
blob2729188d59e0e4afa529e421ddb8bd8047880e2f
1 #ifndef __QSSL_H
2 #define __QSSL_H
3 /***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
10 * Copyright (C) 1998 - 2008, 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 * $Id: qssl.h,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
24 ***************************************************************************/
27 * This header should only be needed to get included by sslgen.c and qssl.c
30 #include "urldata.h"
32 #ifdef USE_QSOSSL
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 ssize_t Curl_qsossl_send(struct connectdata * conn,
41 int sockindex,
42 const void * mem,
43 size_t len);
44 ssize_t Curl_qsossl_recv(struct connectdata * conn, /* connection data */
45 int num, /* socketindex */
46 char * buf, /* store read data here */
47 size_t buffersize, /* max amount to read */
48 bool * wouldblock);
50 size_t Curl_qsossl_version(char * buffer, size_t size);
51 int Curl_qsossl_check_cxn(struct connectdata * cxn);
53 /* API setup for QsoSSL */
54 #define curlssl_init Curl_qsossl_init
55 #define curlssl_cleanup Curl_qsossl_cleanup
56 #define curlssl_connect Curl_qsossl_connect
58 /* No session handling for QsoSSL */
59 #define curlssl_session_free(x)
60 #define curlssl_close_all Curl_qsossl_close_all
61 #define curlssl_close Curl_qsossl_close
62 #define curlssl_shutdown(x,y) Curl_qsossl_shutdown(x,y)
63 #define curlssl_set_engine(x,y) CURLE_FAILED_INIT
64 #define curlssl_set_engine_default(x) CURLE_FAILED_INIT
65 #define curlssl_engines_list(x) NULL
66 #define curlssl_send Curl_qsossl_send
67 #define curlssl_recv Curl_qsossl_recv
68 #define curlssl_version Curl_qsossl_version
69 #define curlssl_check_cxn(x) Curl_qsossl_check_cxn(x)
70 #define curlssl_data_pending(x,y) 0
71 #endif /* USE_QSOSSL */
72 #endif