1#ifndef HEADER_CURL_POLARSSL_H
2#define HEADER_CURL_POLARSSL_H
3/***************************************************************************
4 *                                  _   _ ____  _
5 *  Project                     ___| | | |  _ \| |
6 *                             / __| | | | |_) | |
7 *                            | (__| |_| |  _ <| |___
8 *                             \___|\___/|_| \_\_____|
9 *
10 * Copyright (C) 2010, Hoi-Ho Chan, <hoiho.chan@gmail.com>
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#ifdef USE_POLARSSL
27
28/* Called on first use PolarSSL, setup threading if supported */
29int  polarssl_init(void);
30void polarssl_cleanup(void);
31
32
33CURLcode Curl_polarssl_connect(struct connectdata *conn, int sockindex);
34
35CURLcode Curl_polarssl_connect_nonblocking(struct connectdata *conn,
36                                           int sockindex,
37                                           bool *done);
38
39/* tell PolarSSL to close down all open information regarding connections (and
40   thus session ID caching etc) */
41void Curl_polarssl_close_all(struct SessionHandle *data);
42
43 /* close a SSL connection */
44void Curl_polarssl_close(struct connectdata *conn, int sockindex);
45
46void Curl_polarssl_session_free(void *ptr);
47size_t Curl_polarssl_version(char *buffer, size_t size);
48int Curl_polarssl_shutdown(struct connectdata *conn, int sockindex);
49
50/* API setup for PolarSSL */
51#define curlssl_init() polarssl_init()
52#define curlssl_cleanup() polarssl_cleanup()
53#define curlssl_connect Curl_polarssl_connect
54#define curlssl_connect_nonblocking Curl_polarssl_connect_nonblocking
55#define curlssl_session_free(x)  Curl_polarssl_session_free(x)
56#define curlssl_close_all Curl_polarssl_close_all
57#define curlssl_close Curl_polarssl_close
58#define curlssl_shutdown(x,y) 0
59#define curlssl_set_engine(x,y) (x=x, y=y, CURLE_NOT_BUILT_IN)
60#define curlssl_set_engine_default(x) (x=x, CURLE_NOT_BUILT_IN)
61#define curlssl_engines_list(x) (x=x, (struct curl_slist *)NULL)
62#define curlssl_version Curl_polarssl_version
63#define curlssl_check_cxn(x) (x=x, -1)
64#define curlssl_data_pending(x,y) (x=x, y=y, 0)
65
66#endif /* USE_POLARSSL */
67#endif /* HEADER_CURL_POLARSSL_H */
68