2011-05-24 09:42:02 -04:00
|
|
|
#ifndef HEADER_CURL_HTTP_PROXY_H
|
|
|
|
#define HEADER_CURL_HTTP_PROXY_H
|
2011-04-04 10:24:37 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-04-25 18:34:22 -04:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-04-04 10:24:37 -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.
|
2011-04-04 10:24:37 -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.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2012-03-21 18:22:39 -04:00
|
|
|
|
2011-04-04 10:24:37 -04:00
|
|
|
#if !defined(CURL_DISABLE_PROXY) && !defined(CURL_DISABLE_HTTP)
|
|
|
|
/* ftp can use this as well */
|
|
|
|
CURLcode Curl_proxyCONNECT(struct connectdata *conn,
|
|
|
|
int tunnelsocket,
|
2017-04-25 18:34:22 -04:00
|
|
|
const char *hostname, int remote_port);
|
2011-04-04 10:24:37 -04:00
|
|
|
|
|
|
|
/* Default proxy timeout in milliseconds */
|
|
|
|
#define PROXY_TIMEOUT (3600*1000)
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
CURLcode Curl_proxy_connect(struct connectdata *conn, int sockindex);
|
2012-03-22 12:27:14 -04:00
|
|
|
|
2011-04-04 10:24:37 -04:00
|
|
|
#else
|
2017-04-27 05:42:04 -04:00
|
|
|
#define Curl_proxyCONNECT(x,y,z,w) CURLE_NOT_BUILT_IN
|
2016-11-16 12:49:15 -05:00
|
|
|
#define Curl_proxy_connect(x,y) CURLE_OK
|
2011-04-04 10:24:37 -04:00
|
|
|
#endif
|
2011-05-24 09:42:02 -04:00
|
|
|
|
|
|
|
#endif /* HEADER_CURL_HTTP_PROXY_H */
|