2013-07-15 13:00:36 -04:00
|
|
|
#ifndef HEADER_CURL_GSKIT_H
|
|
|
|
#define HEADER_CURL_GSKIT_H
|
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-11-11 08:53:36 -05:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2013-07-15 13:00:36 -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.
|
2013-07-15 13:00:36 -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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
#include "curl_setup.h"
|
|
|
|
|
|
|
|
/*
|
2013-12-25 05:30:51 -05:00
|
|
|
* This header should only be needed to get included by vtls.c and gskit.c
|
2013-07-15 13:00:36 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
|
|
|
|
#ifdef USE_GSKIT
|
|
|
|
int Curl_gskit_init(void);
|
|
|
|
void Curl_gskit_cleanup(void);
|
2015-01-17 11:49:39 -05:00
|
|
|
CURLcode Curl_gskit_connect(struct connectdata *conn, int sockindex);
|
|
|
|
CURLcode Curl_gskit_connect_nonblocking(struct connectdata *conn,
|
|
|
|
int sockindex, bool *done);
|
2013-07-15 13:00:36 -04:00
|
|
|
void Curl_gskit_close(struct connectdata *conn, int sockindex);
|
2015-01-17 11:49:39 -05:00
|
|
|
int Curl_gskit_shutdown(struct connectdata *conn, int sockindex);
|
2013-07-15 13:00:36 -04:00
|
|
|
|
2015-01-17 11:49:39 -05:00
|
|
|
size_t Curl_gskit_version(char *buffer, size_t size);
|
|
|
|
int Curl_gskit_check_cxn(struct connectdata *cxn);
|
2013-07-15 13:00:36 -04:00
|
|
|
|
2017-06-22 10:45:34 -04:00
|
|
|
extern const struct Curl_ssl Curl_ssl_gskit;
|
|
|
|
|
2015-01-17 11:03:49 -05:00
|
|
|
/* Set the API backend definition to GSKit */
|
|
|
|
#define CURL_SSL_BACKEND CURLSSLBACKEND_GSKIT
|
|
|
|
|
2013-07-15 13:00:36 -04:00
|
|
|
#endif /* USE_GSKIT */
|
|
|
|
|
|
|
|
#endif /* HEADER_CURL_GSKIT_H */
|