2001-01-17 21:19:01 +08:00
|
|
|
#ifndef __TRANSFER_H
|
|
|
|
#define __TRANSFER_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-05-26 05:47:29 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-04-20 21:17:42 +08:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +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-26 05:47:29 +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.
|
1999-12-29 22:20:26 +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.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2001-08-31 06:48:34 +08:00
|
|
|
CURLcode Curl_perform(struct SessionHandle *data);
|
2002-01-03 23:01:22 +08:00
|
|
|
CURLcode Curl_pretransfer(struct SessionHandle *data);
|
2005-02-14 17:30:40 +08:00
|
|
|
CURLcode Curl_second_connect(struct connectdata *conn);
|
2002-01-03 23:01:22 +08:00
|
|
|
CURLcode Curl_posttransfer(struct SessionHandle *data);
|
2008-05-01 05:20:08 +08:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
FOLLOW_NONE, /* not used within the function, just a placeholder to
|
|
|
|
allow initing to this */
|
|
|
|
FOLLOW_FAKE, /* only records stuff, not actually following */
|
|
|
|
FOLLOW_RETRY, /* set if this is a request retry as opposed to a real
|
|
|
|
redirect following */
|
|
|
|
FOLLOW_REDIR, /* a full true redirect */
|
|
|
|
FOLLOW_LAST /* never used */
|
|
|
|
} followtype;
|
|
|
|
|
2011-04-20 21:17:42 +08:00
|
|
|
CURLcode Curl_follow(struct SessionHandle *data, char *newurl,
|
|
|
|
followtype type);
|
2008-05-01 05:20:08 +08:00
|
|
|
|
|
|
|
|
2002-01-03 23:01:22 +08:00
|
|
|
CURLcode Curl_readwrite(struct connectdata *conn, bool *done);
|
2007-08-27 14:31:28 +08:00
|
|
|
int Curl_single_getsock(const struct connectdata *conn,
|
2006-04-10 23:00:53 +08:00
|
|
|
curl_socket_t *socks,
|
|
|
|
int numsocks);
|
2004-11-25 00:11:35 +08:00
|
|
|
CURLcode Curl_readrewind(struct connectdata *conn);
|
2004-06-21 22:07:38 +08:00
|
|
|
CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp);
|
2009-08-21 15:11:20 +08:00
|
|
|
CURLcode Curl_reconnect_request(struct connectdata **connp);
|
2009-08-21 20:01:36 +08:00
|
|
|
CURLcode Curl_retry_request(struct connectdata *conn, char **url);
|
2011-02-24 02:58:43 +08:00
|
|
|
bool Curl_meets_timecondition(struct SessionHandle *data, time_t timeofdoc);
|
2006-09-08 05:49:20 +08:00
|
|
|
|
2001-03-09 23:17:09 +08:00
|
|
|
/* This sets up a forthcoming transfer */
|
2010-04-17 05:43:04 +08:00
|
|
|
void
|
2006-09-08 05:49:20 +08:00
|
|
|
Curl_setup_transfer (struct connectdata *data,
|
2004-10-06 15:50:18 +08:00
|
|
|
int sockindex, /* socket index to read from or -1 */
|
|
|
|
curl_off_t size, /* -1 if unknown at this point */
|
|
|
|
bool getheader, /* TRUE if header parsing is wanted */
|
|
|
|
curl_off_t *bytecountp, /* return number of bytes read */
|
|
|
|
int writesockindex, /* socket index to write to, it may
|
2004-03-11 00:01:47 +08:00
|
|
|
very well be the same we read from.
|
|
|
|
-1 disables */
|
2004-01-22 20:45:50 +08:00
|
|
|
curl_off_t *writecountp /* return number of bytes written */
|
1999-12-29 22:20:26 +08:00
|
|
|
);
|
2010-03-27 06:33:02 +08:00
|
|
|
|
|
|
|
long Curl_sleep_time(curl_off_t rate_bps, curl_off_t cur_rate_bps,
|
|
|
|
int pkt_size);
|
|
|
|
|
1999-12-29 22:20:26 +08:00
|
|
|
#endif
|