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 * $Id: polarssl.h,v 1.10 2009-02-12 20:48:43 danf Exp $
24 ***************************************************************************/
25
26#ifdef USE_POLARSSL
27
28CURLcode Curl_polarssl_connect(struct connectdata *conn, int sockindex);
29
30/* tell PolarSSL to close down all open information regarding connections (and
31   thus session ID caching etc) */
32void Curl_polarssl_close_all(struct SessionHandle *data);
33
34 /* close a SSL connection */
35void Curl_polarssl_close(struct connectdata *conn, int sockindex);
36
37void Curl_polarssl_session_free(void *ptr);
38size_t Curl_polarssl_version(char *buffer, size_t size);
39int Curl_polarssl_shutdown(struct connectdata *conn, int sockindex);
40
41/* API setup for PolarSSL */
42#define curlssl_init() (1)
43#define curlssl_cleanup()
44#define curlssl_connect Curl_polarssl_connect
45#define curlssl_session_free(x)  Curl_polarssl_session_free(x)
46#define curlssl_close_all Curl_polarssl_close_all
47#define curlssl_close Curl_polarssl_close
48#define curlssl_shutdown(x,y) 0
49#define curlssl_set_engine(x,y) (x=x, y=y, CURLE_NOT_BUILT_IN)
50#define curlssl_set_engine_default(x) (x=x, CURLE_NOT_BUILT_IN)
51#define curlssl_engines_list(x) (x=x, (struct curl_slist *)NULL)
52#define curlssl_version Curl_polarssl_version
53#define curlssl_check_cxn(x) (x=x, -1)
54#define curlssl_data_pending(x,y) (x=x, y=y, 0)
55
56#endif /* USE_POLARSSL */
57#endif /* HEADER_CURL_POLARSSL_H */
58