2011-07-26 23:23:27 +08:00
|
|
|
#ifndef HEADER_CURL_URL_H
|
|
|
|
#define HEADER_CURL_URL_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-05-17 16:05:46 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2000-05-22 22:12:12 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2013-08-06 05:49:53 +08:00
|
|
|
* Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2000-05-22 22:12:12 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08: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.
|
2004-05-17 16:05:46 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +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
|
2002-09-03 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2000-05-22 22:12:12 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
2000-05-22 22:12:12 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2013-01-07 02:06:49 +08:00
|
|
|
#include "curl_setup.h"
|
2001-01-05 18:11:41 +08:00
|
|
|
|
2001-08-15 14:53:34 +08:00
|
|
|
/*
|
2013-01-04 09:50:28 +08:00
|
|
|
* Prototypes for library-wide functions provided by url.c
|
2001-08-15 14:53:34 +08:00
|
|
|
*/
|
|
|
|
|
2001-08-31 06:48:34 +08:00
|
|
|
CURLcode Curl_open(struct SessionHandle **curl);
|
2009-01-08 08:31:49 +08:00
|
|
|
CURLcode Curl_init_userdefined(struct UserDefined *set);
|
2005-07-17 20:44:11 +08:00
|
|
|
CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
|
|
|
|
va_list arg);
|
2007-08-02 05:20:01 +08:00
|
|
|
CURLcode Curl_dupset(struct SessionHandle * dst, struct SessionHandle * src);
|
|
|
|
void Curl_freeset(struct SessionHandle * data);
|
2002-01-03 23:01:22 +08:00
|
|
|
CURLcode Curl_close(struct SessionHandle *data); /* opposite of curl_open() */
|
2003-08-05 22:40:59 +08:00
|
|
|
CURLcode Curl_connect(struct SessionHandle *, struct connectdata **,
|
2005-02-09 21:06:40 +08:00
|
|
|
bool *async, bool *protocol_connect);
|
|
|
|
CURLcode Curl_do(struct connectdata **, bool *done);
|
2013-08-06 05:49:53 +08:00
|
|
|
CURLcode Curl_do_more(struct connectdata *, int *completed);
|
2007-01-17 06:22:10 +08:00
|
|
|
CURLcode Curl_done(struct connectdata **, CURLcode, bool premature);
|
2010-11-19 20:43:20 +08:00
|
|
|
CURLcode Curl_disconnect(struct connectdata *, bool dead_connection);
|
2005-02-09 21:06:40 +08: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-31 07:10:35 +08:00
|
|
|
CURLcode Curl_setup_conn(struct connectdata *conn,
|
|
|
|
bool *protocol_done);
|
2013-08-05 16:32:08 +08:00
|
|
|
void Curl_free_request_state(struct SessionHandle *data);
|
2006-04-10 23:00:53 +08: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);
|
|
|
|
|
2008-01-16 20:24:00 +08:00
|
|
|
bool Curl_isPipeliningEnabled(const struct SessionHandle *handle);
|
2007-05-03 03:13:56 +08:00
|
|
|
CURLcode Curl_addHandleToPipeline(struct SessionHandle *handle,
|
2007-09-27 09:45:22 +08:00
|
|
|
struct curl_llist *pipeline);
|
2006-10-09 14:58:05 +08:00
|
|
|
int Curl_removeHandleFromPipeline(struct SessionHandle *handle,
|
2007-09-27 09:45:22 +08:00
|
|
|
struct curl_llist *pipeline);
|
2008-12-03 23:20:27 +08:00
|
|
|
/* remove the specified connection from all (possible) pipelines and related
|
|
|
|
queues */
|
|
|
|
void Curl_getoff_all_pipelines(struct SessionHandle *data,
|
|
|
|
struct connectdata *conn);
|
2006-09-08 05:49:20 +08:00
|
|
|
|
|
|
|
void Curl_close_connections(struct SessionHandle *data);
|
|
|
|
|
2008-04-06 05:13:31 +08:00
|
|
|
#define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */
|
2011-04-20 21:17:42 +08:00
|
|
|
#define CURL_DEFAULT_SOCKS5_GSSAPI_SERVICE "rcmd" /* default socks5 gssapi
|
|
|
|
service */
|
2015-03-29 20:52:31 +08:00
|
|
|
#define CURL_DEFAULT_PROXY_SERVICE_NAME "HTTP" /* default negotiate proxy
|
|
|
|
service */
|
|
|
|
#define CURL_DEFAULT_SERVICE_NAME "HTTP" /* default negotiate service */
|
2008-04-06 05:13:31 +08:00
|
|
|
|
2013-10-27 02:19:27 +08:00
|
|
|
CURLcode Curl_connected_proxy(struct connectdata *conn, int sockindex);
|
2009-05-08 18:59:40 +08:00
|
|
|
|
2010-05-08 05:49:29 +08:00
|
|
|
#ifdef CURL_DISABLE_VERBOSE_STRINGS
|
2011-09-03 22:06:10 +08:00
|
|
|
#define Curl_verboseconnect(x) Curl_nop_stmt
|
2010-05-08 05:49:29 +08:00
|
|
|
#else
|
|
|
|
void Curl_verboseconnect(struct connectdata *conn);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-07-26 23:23:27 +08:00
|
|
|
#endif /* HEADER_CURL_URL_H */
|