~ubuntu-branches/ubuntu/natty/curl/natty-proposed

« back to all changes in this revision

Viewing changes to lib/url.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-05-24 21:12:19 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (3.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20090524211219-7jgcwuhl04ixuqsm
Tags: upstream-7.19.5
ImportĀ upstreamĀ versionĀ 7.19.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
11
11
 *
12
12
 * This software is licensed as described in the file COPYING, which
13
13
 * you should have received as part of this distribution. The terms
20
20
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
21
 * KIND, either express or implied.
22
22
 *
23
 
 * $Id: url.h,v 1.38 2008-04-05 21:13:31 bagder Exp $
 
23
 * $Id: url.h,v 1.44 2009-05-08 10:59:40 bagder Exp $
24
24
 ***************************************************************************/
25
25
 
26
26
#include <stdarg.h> /* to make sure we have ap_list */
30
30
 */
31
31
 
32
32
CURLcode Curl_open(struct SessionHandle **curl);
 
33
CURLcode Curl_init_userdefined(struct UserDefined *set);
33
34
CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
34
35
                     va_list arg);
35
36
CURLcode Curl_dupset(struct SessionHandle * dst, struct SessionHandle * src);
69
70
                                  struct curl_llist *pipeline);
70
71
int Curl_removeHandleFromPipeline(struct SessionHandle *handle,
71
72
                                  struct curl_llist *pipeline);
 
73
/* remove the specified connection from all (possible) pipelines and related
 
74
   queues */
 
75
void Curl_getoff_all_pipelines(struct SessionHandle *data,
 
76
                               struct connectdata *conn);
72
77
 
73
78
void Curl_close_connections(struct SessionHandle *data);
74
79
 
78
83
void Curl_reset_reqproto(struct connectdata *conn);
79
84
 
80
85
#define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */
 
86
#define CURL_DEFAULT_SOCKS5_GSSAPI_SERVICE "rcmd" /* default socks5 gssapi service */
 
87
 
 
88
CURLcode Curl_connected_proxy(struct connectdata *conn);
81
89
 
82
90
#endif