2000-05-22 18:12:12 +04:00
|
|
|
#ifndef __URL_H
|
|
|
|
#define __URL_H
|
2002-09-03 15:52:59 +04:00
|
|
|
/***************************************************************************
|
2004-05-17 12:05:46 +04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2000-05-22 18:12:12 +04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2007-01-27 06:43:05 +03:00
|
|
|
* Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2000-05-22 18:12:12 +04:00
|
|
|
*
|
2002-09-03 15: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
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-05-17 12:05:46 +04:00
|
|
|
*
|
2001-01-03 12:29:33 +03: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 15:52:59 +04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2000-05-22 18:12:12 +04:00
|
|
|
*
|
2001-01-03 12:29:33 +03:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
2000-05-22 18:12:12 +04:00
|
|
|
*
|
2001-01-03 12:29:33 +03:00
|
|
|
* $Id$
|
2002-09-03 15:52:59 +04:00
|
|
|
***************************************************************************/
|
2001-01-05 13:11:41 +03:00
|
|
|
|
2005-07-17 16:44:11 +04:00
|
|
|
#include <stdarg.h> /* to make sure we have ap_list */
|
|
|
|
|
2001-08-15 10:53:34 +04:00
|
|
|
/*
|
|
|
|
* Prototypes for library-wide functions provided by url.c
|
|
|
|
*/
|
|
|
|
|
2001-08-31 02:48:34 +04:00
|
|
|
CURLcode Curl_open(struct SessionHandle **curl);
|
2005-07-17 16:44:11 +04:00
|
|
|
CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
|
|
|
|
va_list arg);
|
2002-01-03 18:01:22 +03:00
|
|
|
CURLcode Curl_close(struct SessionHandle *data); /* opposite of curl_open() */
|
2003-08-05 18:40:59 +04:00
|
|
|
CURLcode Curl_connect(struct SessionHandle *, struct connectdata **,
|
2005-02-09 16:06:40 +03:00
|
|
|
bool *async, bool *protocol_connect);
|
|
|
|
CURLcode Curl_async_resolved(struct connectdata *conn,
|
|
|
|
bool *protocol_connect);
|
|
|
|
CURLcode Curl_do(struct connectdata **, bool *done);
|
2002-08-12 13:43:20 +04:00
|
|
|
CURLcode Curl_do_more(struct connectdata *);
|
2007-01-17 01:22:10 +03:00
|
|
|
CURLcode Curl_done(struct connectdata **, CURLcode, bool premature);
|
2001-08-15 10:53:34 +04:00
|
|
|
CURLcode Curl_disconnect(struct connectdata *);
|
2005-02-09 16:06:40 +03: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);
|
2003-07-21 17:16:30 +04:00
|
|
|
void Curl_safefree(void *ptr);
|
2006-04-10 19:00:53 +04:00
|
|
|
|
2006-09-08 01:49:20 +04:00
|
|
|
/* create a connection cache */
|
2007-02-01 14:27:42 +03:00
|
|
|
struct conncache *Curl_mk_connc(int type, long amount);
|
2006-09-08 01:49:20 +04:00
|
|
|
/* free a connection cache */
|
|
|
|
void Curl_rm_connc(struct conncache *c);
|
2006-09-17 01:50:29 +04:00
|
|
|
/* Change number of entries of a connection cache */
|
|
|
|
CURLcode Curl_ch_connc(struct SessionHandle *data,
|
|
|
|
struct conncache *c,
|
|
|
|
long newamount);
|
2006-04-10 19: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);
|
|
|
|
|
2007-05-02 23:13:56 +04:00
|
|
|
CURLcode Curl_addHandleToPipeline(struct SessionHandle *handle,
|
|
|
|
struct curl_llist *pipe);
|
2006-10-09 10:58:05 +04:00
|
|
|
int Curl_removeHandleFromPipeline(struct SessionHandle *handle,
|
|
|
|
struct curl_llist *pipe);
|
2006-09-08 01:49:20 +04:00
|
|
|
bool Curl_isHandleAtHead(struct SessionHandle *handle,
|
|
|
|
struct curl_llist *pipe);
|
|
|
|
|
|
|
|
void Curl_close_connections(struct SessionHandle *data);
|
|
|
|
|
2006-04-10 19:00:53 +04:00
|
|
|
#if 0
|
2005-02-09 16:06:40 +03:00
|
|
|
CURLcode Curl_protocol_fdset(struct connectdata *conn,
|
|
|
|
fd_set *read_fd_set,
|
|
|
|
fd_set *write_fd_set,
|
|
|
|
int *max_fdp);
|
|
|
|
CURLcode Curl_doing_fdset(struct connectdata *conn,
|
|
|
|
fd_set *read_fd_set,
|
|
|
|
fd_set *write_fd_set,
|
|
|
|
int *max_fdp);
|
2000-05-22 18:12:12 +04:00
|
|
|
#endif
|
2006-04-10 19:00:53 +04:00
|
|
|
|
|
|
|
#endif
|