Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl / url.h
blob3eaddbb19077a185e27d64a632f5e8038896f288
1 #ifndef __URL_H
2 #define __URL_H
3 /***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
10 * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
14 * are also available at http://curl.haxx.se/docs/copyright.html.
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 * $Id: url.h,v 1.2 2007/03/15 19:22:13 andy Exp $
24 ***************************************************************************/
26 #include <stdarg.h> /* to make sure we have ap_list */
29 * Prototypes for library-wide functions provided by url.c
32 CURLcode Curl_open(struct SessionHandle **curl);
33 CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
34 va_list arg);
35 CURLcode Curl_close(struct SessionHandle *data); /* opposite of curl_open() */
36 CURLcode Curl_connect(struct SessionHandle *, struct connectdata **,
37 bool *async, bool *protocol_connect);
38 CURLcode Curl_async_resolved(struct connectdata *conn,
39 bool *protocol_connect);
40 CURLcode Curl_do(struct connectdata **, bool *done);
41 CURLcode Curl_do_more(struct connectdata *);
42 CURLcode Curl_done(struct connectdata **, CURLcode, bool premature);
43 CURLcode Curl_disconnect(struct connectdata *);
44 CURLcode Curl_protocol_connect(struct connectdata *conn, bool *done);
45 CURLcode Curl_protocol_connecting(struct connectdata *conn, bool *done);
46 CURLcode Curl_protocol_doing(struct connectdata *conn, bool *done);
47 void Curl_safefree(void *ptr);
49 /* create a connection cache */
50 struct conncache *Curl_mk_connc(int type, int amount);
51 /* free a connection cache */
52 void Curl_rm_connc(struct conncache *c);
53 /* Change number of entries of a connection cache */
54 CURLcode Curl_ch_connc(struct SessionHandle *data,
55 struct conncache *c,
56 long newamount);
58 int Curl_protocol_getsock(struct connectdata *conn,
59 curl_socket_t *socks,
60 int numsocks);
61 int Curl_doing_getsock(struct connectdata *conn,
62 curl_socket_t *socks,
63 int numsocks);
65 void Curl_addHandleToPipeline(struct SessionHandle *handle,
66 struct curl_llist *pipe);
67 int Curl_removeHandleFromPipeline(struct SessionHandle *handle,
68 struct curl_llist *pipe);
69 bool Curl_isHandleAtHead(struct SessionHandle *handle,
70 struct curl_llist *pipe);
72 void Curl_close_connections(struct SessionHandle *data);
74 #if 0
75 CURLcode Curl_protocol_fdset(struct connectdata *conn,
76 fd_set *read_fd_set,
77 fd_set *write_fd_set,
78 int *max_fdp);
79 CURLcode Curl_doing_fdset(struct connectdata *conn,
80 fd_set *read_fd_set,
81 fd_set *write_fd_set,
82 int *max_fdp);
83 #endif
85 #endif