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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2005-03-31 02:02:02 -05:00
|
|
|
* Copyright (C) 1998 - 2005, 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
|
|
|
***************************************************************************/
|
2005-04-07 11:27:13 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This header should only be needed to get included by sslgen.c and ssluse.c
|
|
|
|
*/
|
|
|
|
|
2001-02-20 12:35:51 -05:00
|
|
|
#include "urldata.h"
|
2005-04-07 11:27:13 -04:00
|
|
|
CURLcode Curl_ossl_connect(struct connectdata *conn, int sockindex);
|
|
|
|
void Curl_ossl_close(struct connectdata *conn); /* close a SSL connection */
|
|
|
|
/* tell OpenSSL to close down all open information regarding connections (and
|
|
|
|
thus session ID caching etc) */
|
|
|
|
int Curl_ossl_close_all(struct SessionHandle *data);
|
|
|
|
/* Sets an OpenSSL engine */
|
|
|
|
CURLcode Curl_ossl_set_engine(struct SessionHandle *data, const char *engine);
|
2001-09-07 05:40:46 -04:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/* function provided for the generic SSL-layer, called when a session id
|
|
|
|
should be freed */
|
|
|
|
void Curl_ossl_session_free(void *ptr);
|
2001-08-28 04:37:54 -04:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/* Sets engine as default for all SSL operations */
|
|
|
|
CURLcode Curl_ossl_set_engine_default(struct SessionHandle *data);
|
2001-08-28 04:37:54 -04:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
/* Build list of OpenSSL engines */
|
|
|
|
struct curl_slist *Curl_ossl_engines_list(struct SessionHandle *data);
|
2004-12-13 11:43:00 -05:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
int Curl_ossl_init(void);
|
|
|
|
void Curl_ossl_cleanup(void);
|
2004-12-13 11:43:00 -05:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
int Curl_ossl_send(struct connectdata *conn,
|
|
|
|
int sockindex,
|
|
|
|
void *mem,
|
|
|
|
size_t len);
|
|
|
|
ssize_t Curl_ossl_recv(struct connectdata *conn, /* connection data */
|
|
|
|
int num, /* socketindex */
|
|
|
|
char *buf, /* store read data here */
|
|
|
|
size_t buffersize, /* max amount to read */
|
|
|
|
bool *wouldblock);
|
2004-12-13 11:43:00 -05:00
|
|
|
|
2005-04-07 11:27:13 -04:00
|
|
|
size_t Curl_ossl_version(char *buffer, size_t size);
|
2004-12-13 11:43:00 -05:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#endif
|