2012-06-26 08:01:51 -04:00
|
|
|
#ifndef HEADER_CURL_DARWINSSL_H
|
|
|
|
#define HEADER_CURL_DARWINSSL_H
|
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2014-06-03 14:04:46 -04:00
|
|
|
* Copyright (C) 2012 - 2014, Nick Zitzmann, <nickzman@gmail.com>.
|
2015-01-17 11:03:49 -05:00
|
|
|
* Copyright (C) 2012 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2012-06-26 08:01:51 -04: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-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2012-06-26 08:01:51 -04: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
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2012-06-26 08:01:51 -04:00
|
|
|
|
|
|
|
#ifdef USE_DARWINSSL
|
|
|
|
|
2012-06-26 15:39:48 -04:00
|
|
|
CURLcode Curl_darwinssl_connect(struct connectdata *conn, int sockindex);
|
2012-06-26 08:01:51 -04:00
|
|
|
|
2012-06-26 15:39:48 -04:00
|
|
|
CURLcode Curl_darwinssl_connect_nonblocking(struct connectdata *conn,
|
|
|
|
int sockindex,
|
|
|
|
bool *done);
|
2012-06-26 08:01:51 -04:00
|
|
|
|
|
|
|
/* close a SSL connection */
|
2012-06-26 15:39:48 -04:00
|
|
|
void Curl_darwinssl_close(struct connectdata *conn, int sockindex);
|
2012-06-26 08:01:51 -04:00
|
|
|
|
2013-04-12 14:20:10 -04:00
|
|
|
void Curl_darwinssl_session_free(void *ptr);
|
2012-06-26 15:39:48 -04:00
|
|
|
size_t Curl_darwinssl_version(char *buffer, size_t size);
|
|
|
|
int Curl_darwinssl_shutdown(struct connectdata *conn, int sockindex);
|
|
|
|
int Curl_darwinssl_check_cxn(struct connectdata *conn);
|
|
|
|
bool Curl_darwinssl_data_pending(const struct connectdata *conn,
|
|
|
|
int connindex);
|
2012-06-26 08:01:51 -04:00
|
|
|
|
2014-06-03 14:04:46 -04:00
|
|
|
int Curl_darwinssl_random(unsigned char *entropy,
|
|
|
|
size_t length);
|
2012-06-27 05:57:31 -04:00
|
|
|
void Curl_darwinssl_md5sum(unsigned char *tmp, /* input */
|
|
|
|
size_t tmplen,
|
|
|
|
unsigned char *md5sum, /* output */
|
|
|
|
size_t md5len);
|
2015-03-21 13:22:56 -04:00
|
|
|
bool Curl_darwinssl_false_start(void);
|
2012-06-27 05:57:31 -04:00
|
|
|
|
2015-01-17 11:03:49 -05:00
|
|
|
/* Set the API backend definition to SecureTransport */
|
|
|
|
#define CURL_SSL_BACKEND CURLSSLBACKEND_DARWINSSL
|
|
|
|
|
2012-06-26 08:01:51 -04:00
|
|
|
/* API setup for SecureTransport */
|
|
|
|
#define curlssl_init() (1)
|
|
|
|
#define curlssl_cleanup() Curl_nop_stmt
|
2012-06-26 15:39:48 -04:00
|
|
|
#define curlssl_connect Curl_darwinssl_connect
|
|
|
|
#define curlssl_connect_nonblocking Curl_darwinssl_connect_nonblocking
|
2013-04-12 14:20:10 -04:00
|
|
|
#define curlssl_session_free(x) Curl_darwinssl_session_free(x)
|
2015-01-17 11:41:03 -05:00
|
|
|
#define curlssl_close_all(x) ((void)x)
|
2012-06-26 15:39:48 -04:00
|
|
|
#define curlssl_close Curl_darwinssl_close
|
2012-06-26 08:01:51 -04:00
|
|
|
#define curlssl_shutdown(x,y) 0
|
2014-12-30 12:08:16 -05:00
|
|
|
#define curlssl_set_engine(x,y) ((void)x, (void)y, CURLE_NOT_BUILT_IN)
|
|
|
|
#define curlssl_set_engine_default(x) ((void)x, CURLE_NOT_BUILT_IN)
|
|
|
|
#define curlssl_engines_list(x) ((void)x, (struct curl_slist *)NULL)
|
2012-06-26 15:39:48 -04:00
|
|
|
#define curlssl_version Curl_darwinssl_version
|
|
|
|
#define curlssl_check_cxn Curl_darwinssl_check_cxn
|
|
|
|
#define curlssl_data_pending(x,y) Curl_darwinssl_data_pending(x, y)
|
2014-12-28 16:29:26 -05:00
|
|
|
#define curlssl_random(x,y,z) ((void)x, Curl_darwinssl_random(y,z))
|
2012-06-27 05:57:31 -04:00
|
|
|
#define curlssl_md5sum(a,b,c,d) Curl_darwinssl_md5sum(a,b,c,d)
|
2015-03-21 13:22:56 -04:00
|
|
|
#define curlssl_false_start() Curl_darwinssl_false_start()
|
2012-06-26 08:01:51 -04:00
|
|
|
|
|
|
|
#endif /* USE_DARWINSSL */
|
2012-06-27 04:55:54 -04:00
|
|
|
#endif /* HEADER_CURL_DARWINSSL_H */
|