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 ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-04-05 19:55:11 +08:00
|
|
|
* Copyright (C) 1998 - 2011, 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
|
2016-02-03 07:19:02 +08:00
|
|
|
* are also available at https://curl.haxx.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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
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
|
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.
|
|
|
|
*
|
|
|
|
* This is STUPID BLOCKING behaviour which we frown upon, but right now this
|
|
|
|
* is what we have...
|
|
|
|
*/
|
|
|
|
int Curl_blockread_all(struct connectdata *conn,
|
|
|
|
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
|
|
|
|
2006-09-24 03:07:20 +08:00
|
|
|
/*
|
2008-01-03 05:40:11 +08:00
|
|
|
* This function logs in to a SOCKS4(a) proxy and sends the specifics to the
|
2006-09-24 03:07:20 +08:00
|
|
|
* final destination server.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_SOCKS4(const char *proxy_name,
|
2007-08-27 14:31:28 +08:00
|
|
|
const char *hostname,
|
2007-02-19 19:53:54 +08:00
|
|
|
int remote_port,
|
|
|
|
int sockindex,
|
2016-11-17 01:49:15 +08:00
|
|
|
struct connectdata *conn);
|
2006-09-24 03:07:20 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This function logs in to a SOCKS5 proxy and sends the specifics to the
|
|
|
|
* final destination server.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_SOCKS5(const char *proxy_name,
|
|
|
|
const char *proxy_password,
|
2007-08-27 14:31:28 +08:00
|
|
|
const char *hostname,
|
2007-02-19 19:53:54 +08:00
|
|
|
int remote_port,
|
|
|
|
int sockindex,
|
2006-09-24 03:07:20 +08:00
|
|
|
struct connectdata *conn);
|
|
|
|
|
2009-01-29 05:33:58 +08:00
|
|
|
#if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
|
|
|
|
/*
|
2014-07-21 15:53:47 +08:00
|
|
|
* This function handles the SOCKS5 GSS-API negotiation and initialisation
|
2009-01-29 05:33:58 +08:00
|
|
|
*/
|
|
|
|
CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
|
|
|
|
struct connectdata *conn);
|
2006-09-24 03:07:20 +08:00
|
|
|
#endif
|
2009-01-29 05:33:58 +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 */
|