2011-07-26 11:23:27 -04:00
|
|
|
#ifndef HEADER_CURL_URL_H
|
|
|
|
#define HEADER_CURL_URL_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-05-17 04:05:46 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2000-05-22 10:12:12 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-03-29 17:53:48 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2000-05-22 10:12:12 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -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.
|
2004-05-17 04:05:46 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05: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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2000-05-22 10:12:12 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
2000-05-22 10:12:12 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2001-08-15 02:53:34 -04:00
|
|
|
/*
|
2013-01-03 20:50:28 -05:00
|
|
|
* Prototypes for library-wide functions provided by url.c
|
2001-08-15 02:53:34 -04:00
|
|
|
*/
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_init_do(struct Curl_easy *data, struct connectdata *conn);
|
|
|
|
CURLcode Curl_open(struct Curl_easy **curl);
|
2009-01-07 19:31:49 -05:00
|
|
|
CURLcode Curl_init_userdefined(struct UserDefined *set);
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_setopt(struct Curl_easy *data, CURLoption option,
|
2005-07-17 08:44:11 -04:00
|
|
|
va_list arg);
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_dupset(struct Curl_easy * dst, struct Curl_easy * src);
|
|
|
|
void Curl_freeset(struct Curl_easy * data);
|
|
|
|
CURLcode Curl_close(struct Curl_easy *data); /* opposite of curl_open() */
|
|
|
|
CURLcode Curl_connect(struct Curl_easy *, struct connectdata **,
|
2005-02-09 08:06:40 -05:00
|
|
|
bool *async, bool *protocol_connect);
|
2010-11-19 07:43:20 -05:00
|
|
|
CURLcode Curl_disconnect(struct connectdata *, bool dead_connection);
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode Curl_protocol_connect(struct connectdata *conn, bool *done);
|
|
|
|
CURLcode Curl_protocol_connecting(struct connectdata *conn, bool *done);
|
|
|
|
CURLcode Curl_protocol_doing(struct connectdata *conn, bool *done);
|
2011-01-30 18:10:35 -05:00
|
|
|
CURLcode Curl_setup_conn(struct connectdata *conn,
|
|
|
|
bool *protocol_done);
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_free_request_state(struct Curl_easy *data);
|
2006-04-10 11:00:53 -04:00
|
|
|
|
|
|
|
int Curl_protocol_getsock(struct connectdata *conn,
|
|
|
|
curl_socket_t *socks,
|
|
|
|
int numsocks);
|
|
|
|
int Curl_doing_getsock(struct connectdata *conn,
|
|
|
|
curl_socket_t *socks,
|
|
|
|
int numsocks);
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
bool Curl_isPipeliningEnabled(const struct Curl_easy *handle);
|
|
|
|
CURLcode Curl_addHandleToPipeline(struct Curl_easy *handle,
|
2007-09-26 21:45:22 -04:00
|
|
|
struct curl_llist *pipeline);
|
2016-06-21 09:47:12 -04:00
|
|
|
int Curl_removeHandleFromPipeline(struct Curl_easy *handle,
|
2007-09-26 21:45:22 -04:00
|
|
|
struct curl_llist *pipeline);
|
2016-03-29 18:17:02 -04:00
|
|
|
struct connectdata *
|
2016-06-21 09:47:12 -04:00
|
|
|
Curl_oldest_idle_connection(struct Curl_easy *data);
|
2008-12-03 10:20:27 -05:00
|
|
|
/* remove the specified connection from all (possible) pipelines and related
|
|
|
|
queues */
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_getoff_all_pipelines(struct Curl_easy *data,
|
2008-12-03 10:20:27 -05:00
|
|
|
struct connectdata *conn);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_close_connections(struct Curl_easy *data);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2008-04-05 17:13:31 -04:00
|
|
|
#define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */
|
2016-11-24 13:40:30 -05:00
|
|
|
#define CURL_DEFAULT_HTTPS_PROXY_PORT 443 /* default https proxy port unless
|
|
|
|
specified */
|
2008-04-05 17:13:31 -04:00
|
|
|
|
2013-10-26 14:19:27 -04:00
|
|
|
CURLcode Curl_connected_proxy(struct connectdata *conn, int sockindex);
|
2009-05-08 06:59:40 -04:00
|
|
|
|
2010-05-07 17:49:29 -04:00
|
|
|
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
2011-09-03 10:06:10 -04:00
|
|
|
#define Curl_verboseconnect(x) Curl_nop_stmt
|
2010-05-07 17:49:29 -04:00
|
|
|
#else
|
|
|
|
void Curl_verboseconnect(struct connectdata *conn);
|
|
|
|
#endif
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
#define CONNECT_PROXY_SSL()\
|
|
|
|
(conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
|
|
|
|
!conn->bits.proxy_ssl_connected[sockindex])
|
|
|
|
|
|
|
|
#define CONNECT_FIRSTSOCKET_PROXY_SSL()\
|
|
|
|
(conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
|
|
|
|
!conn->bits.proxy_ssl_connected[FIRSTSOCKET])
|
|
|
|
|
|
|
|
#define CONNECT_SECONDARYSOCKET_PROXY_SSL()\
|
|
|
|
(conn->http_proxy.proxytype == CURLPROXY_HTTPS &&\
|
|
|
|
!conn->bits.proxy_ssl_connected[SECONDARYSOCKET])
|
2010-05-07 17:49:29 -04:00
|
|
|
|
2011-07-26 11:23:27 -04:00
|
|
|
#endif /* HEADER_CURL_URL_H */
|