2012-12-28 19:03:09 +08:00
|
|
|
#ifndef HEADER_CURL_SOCKS_H
|
|
|
|
#define HEADER_CURL_SOCKS_H
|
2006-09-24 03:09:39 +08:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2022-04-05 19:32:26 +08:00
|
|
|
* Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2006-09-24 03:09:39 +08:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2006-09-24 03:09:39 +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
|
|
|
|
* 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.
|
|
|
|
*
|
2022-05-17 17:16:50 +08:00
|
|
|
* SPDX-License-Identifier: curl
|
|
|
|
*
|
2006-09-24 03:09:39 +08:00
|
|
|
***************************************************************************/
|
2006-09-24 03:07:20 +08:00
|
|
|
|
2013-01-07 02:06:49 +08:00
|
|
|
#include "curl_setup.h"
|
2011-04-05 19:55:11 +08:00
|
|
|
|
|
|
|
#ifdef CURL_DISABLE_PROXY
|
2016-11-17 01:49:15 +08:00
|
|
|
#define Curl_SOCKS4(a,b,c,d,e) CURLE_NOT_BUILT_IN
|
2011-04-05 21:14:02 +08:00
|
|
|
#define Curl_SOCKS5(a,b,c,d,e,f) CURLE_NOT_BUILT_IN
|
2020-02-14 23:16:54 +08:00
|
|
|
#define Curl_SOCKS_getsock(x,y,z) 0
|
2011-04-05 19:55:11 +08:00
|
|
|
#else
|
2009-01-29 05:33:58 +08:00
|
|
|
/*
|
|
|
|
* Helper read-from-socket functions. Does the same as Curl_read() but it
|
|
|
|
* blocks until all bytes amount of buffersize will be read. No more, no less.
|
|
|
|
*
|
2020-02-14 23:16:54 +08:00
|
|
|
* This is STUPID BLOCKING behavior
|
2009-01-29 05:33:58 +08:00
|
|
|
*/
|
2021-01-18 18:56:50 +08:00
|
|
|
int Curl_blockread_all(struct Curl_easy *data,
|
2009-01-29 05:33:58 +08:00
|
|
|
curl_socket_t sockfd,
|
|
|
|
char *buf,
|
|
|
|
ssize_t buffersize,
|
2011-08-08 17:10:17 +08:00
|
|
|
ssize_t *n);
|
2009-01-29 05:33:58 +08:00
|
|
|
|
|
|
|
#if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
|
|
|
|
/*
|
2022-04-05 19:32:26 +08:00
|
|
|
* This function handles the SOCKS5 GSS-API negotiation and initialization
|
2009-01-29 05:33:58 +08:00
|
|
|
*/
|
|
|
|
CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
|
2021-01-18 18:56:50 +08:00
|
|
|
struct Curl_easy *data);
|
2006-09-24 03:07:20 +08:00
|
|
|
#endif
|
2009-01-29 05:33:58 +08:00
|
|
|
|
2022-11-22 16:55:41 +08:00
|
|
|
CURLcode Curl_conn_socks_proxy_add(struct Curl_easy *data,
|
2022-11-26 19:43:56 +08:00
|
|
|
struct connectdata *conn,
|
2022-11-22 16:55:41 +08:00
|
|
|
int sockindex);
|
2022-11-11 18:45:34 +08:00
|
|
|
|
2011-04-05 19:55:11 +08:00
|
|
|
#endif /* CURL_DISABLE_PROXY */
|
|
|
|
|
2012-12-28 19:03:09 +08:00
|
|
|
#endif /* HEADER_CURL_SOCKS_H */
|