2011-08-28 17:29:09 +08:00
|
|
|
#ifndef HEADER_CURL_SSLUSE_H
|
|
|
|
#define HEADER_CURL_SSLUSE_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-12-14 00:43:00 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-01-13 00:41:26 +08:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-03 07:19:02 +08:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-12-14 00:43:00 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08: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 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2005-04-07 23:27:13 +08:00
|
|
|
|
2013-01-07 02:06:49 +08:00
|
|
|
#include "curl_setup.h"
|
2011-08-28 17:29:09 +08:00
|
|
|
|
2015-03-05 17:57:52 +08:00
|
|
|
#ifdef USE_OPENSSL
|
2005-04-07 23:27:13 +08:00
|
|
|
/*
|
2013-12-25 18:30:51 +08:00
|
|
|
* This header should only be needed to get included by vtls.c and openssl.c
|
2005-04-07 23:27:13 +08:00
|
|
|
*/
|
|
|
|
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "urldata.h"
|
2011-08-28 17:29:09 +08:00
|
|
|
|
2017-06-22 22:45:34 +08:00
|
|
|
extern const struct Curl_ssl Curl_ssl_openssl;
|
|
|
|
|
2015-03-05 17:57:52 +08:00
|
|
|
#endif /* USE_OPENSSL */
|
2011-08-28 17:29:09 +08:00
|
|
|
#endif /* HEADER_CURL_SSLUSE_H */
|