1999-12-29 09:20:26 -05:00
|
|
|
#ifndef __SSLUSE_H
|
|
|
|
#define __SSLUSE_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-12-13 11:43:00 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2004-01-07 04:19:33 -05:00
|
|
|
* Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-12-13 11:43:00 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2001-02-20 12:35:51 -05:00
|
|
|
#include "urldata.h"
|
2004-03-10 11:01:47 -05:00
|
|
|
CURLcode Curl_SSLConnect(struct connectdata *conn, int sockindex);
|
2001-09-07 05:40:46 -04:00
|
|
|
|
2001-08-28 04:37:54 -04:00
|
|
|
void Curl_SSL_init(void); /* Global SSL init */
|
|
|
|
void Curl_SSL_cleanup(void); /* Global SSL cleanup */
|
|
|
|
|
|
|
|
/* init the SSL session ID cache */
|
2001-08-30 18:48:34 -04:00
|
|
|
CURLcode Curl_SSL_InitSessions(struct SessionHandle *, long);
|
2001-08-28 04:37:54 -04:00
|
|
|
void Curl_SSL_Close(struct connectdata *conn); /* close a SSL connection */
|
|
|
|
|
2004-12-13 11:43:00 -05:00
|
|
|
/* tell the SSL stuff to close down all open information regarding
|
2001-08-28 04:37:54 -04:00
|
|
|
connections (and thus session ID caching etc) */
|
2001-08-30 18:48:34 -04:00
|
|
|
int Curl_SSL_Close_All(struct SessionHandle *data);
|
2004-12-13 11:43:00 -05:00
|
|
|
|
|
|
|
/* Sets an OpenSSL engine */
|
|
|
|
CURLcode Curl_SSL_set_engine(struct SessionHandle *data, const char *engine);
|
|
|
|
|
|
|
|
/* Sets above engine as default for all SSL operations */
|
|
|
|
CURLcode Curl_SSL_set_engine_default(struct SessionHandle *data);
|
|
|
|
|
|
|
|
/* Build list of OpenSSL engines */
|
2004-12-14 09:20:21 -05:00
|
|
|
struct curl_slist *Curl_SSL_engines_list(struct SessionHandle *data);
|
2004-12-13 11:43:00 -05:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#endif
|