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 ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) 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.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
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
|
|
|
*/
|
2023-01-30 23:03:00 +08:00
|
|
|
int Curl_blockread_all(struct Curl_cfilter *cf,
|
|
|
|
struct Curl_easy *data,
|
2009-01-29 05:33:58 +08:00
|
|
|
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
|
|
|
*/
|
2023-01-30 23:03:00 +08:00
|
|
|
CURLcode Curl_SOCKS5_gssapi_negotiate(struct Curl_cfilter *cf,
|
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-12-30 16:14:55 +08:00
|
|
|
CURLcode Curl_cf_socks_proxy_insert_after(struct Curl_cfilter *cf_at,
|
|
|
|
struct Curl_easy *data);
|
|
|
|
|
2023-01-11 17:30:42 +08:00
|
|
|
extern struct Curl_cftype Curl_cft_socks_proxy;
|
|
|
|
|
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 */
|