2011-04-05 07:55:11 -04:00
|
|
|
#ifndef __CURL_SOCKS_H
|
|
|
|
#define __CURL_SOCKS_H
|
2006-09-23 15:09:39 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-04-05 07:55:11 -04:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2006-09-23 15:09:39 -04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* 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-23 15:07:20 -04:00
|
|
|
|
2011-04-05 07:55:11 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
|
|
|
#ifdef CURL_DISABLE_PROXY
|
2011-04-05 09:14:02 -04:00
|
|
|
#define Curl_SOCKS4(a,b,c,d,e,f) CURLE_NOT_BUILT_IN
|
|
|
|
#define Curl_SOCKS5(a,b,c,d,e,f) CURLE_NOT_BUILT_IN
|
2011-04-05 07:55:11 -04:00
|
|
|
#else
|
2009-01-28 16:33:58 -05: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 05:10:17 -04:00
|
|
|
ssize_t *n);
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2006-09-23 15:07:20 -04:00
|
|
|
/*
|
2008-01-02 16:40:11 -05:00
|
|
|
* This function logs in to a SOCKS4(a) proxy and sends the specifics to the
|
2006-09-23 15:07:20 -04:00
|
|
|
* final destination server.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_SOCKS4(const char *proxy_name,
|
2007-08-27 02:31:28 -04:00
|
|
|
const char *hostname,
|
2007-02-19 06:53:54 -05:00
|
|
|
int remote_port,
|
|
|
|
int sockindex,
|
2008-01-02 16:40:11 -05:00
|
|
|
struct connectdata *conn,
|
|
|
|
bool protocol4a);
|
2006-09-23 15:07:20 -04: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 02:31:28 -04:00
|
|
|
const char *hostname,
|
2007-02-19 06:53:54 -05:00
|
|
|
int remote_port,
|
|
|
|
int sockindex,
|
2006-09-23 15:07:20 -04:00
|
|
|
struct connectdata *conn);
|
|
|
|
|
2009-01-28 16:33:58 -05:00
|
|
|
#if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
|
|
|
|
/*
|
|
|
|
* This function handles the sockss5 gssapie negotiation and initialisation
|
|
|
|
*/
|
|
|
|
CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
|
|
|
|
struct connectdata *conn);
|
2006-09-23 15:07:20 -04:00
|
|
|
#endif
|
2009-01-28 16:33:58 -05:00
|
|
|
|
2011-04-05 07:55:11 -04:00
|
|
|
#endif /* CURL_DISABLE_PROXY */
|
|
|
|
|
|
|
|
#endif /* __CURL_SOCKS_H */
|