2012-12-28 06:03:09 -05:00
|
|
|
#ifndef HEADER_CURL_TRANSFER_H
|
|
|
|
#define HEADER_CURL_TRANSFER_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-05-25 17:47:29 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-03-29 17:56:22 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07: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
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-05-25 17:47:29 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05: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 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2013-01-31 18:43:20 -05:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_init_CONNECT(struct Curl_easy *data);
|
2015-10-05 14:39:10 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_pretransfer(struct Curl_easy *data);
|
2005-02-14 04:30:40 -05:00
|
|
|
CURLcode Curl_second_connect(struct connectdata *conn);
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_posttransfer(struct Curl_easy *data);
|
2008-04-30 17:20:08 -04: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;
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_follow(struct Curl_easy *data, char *newurl,
|
2011-04-20 09:17:42 -04:00
|
|
|
followtype type);
|
2015-05-20 08:33:04 -04:00
|
|
|
CURLcode Curl_readwrite(struct connectdata *conn,
|
2016-08-01 18:48:23 -04:00
|
|
|
struct Curl_easy *data, bool *done,
|
|
|
|
bool *comeback);
|
2007-08-27 02:31:28 -04:00
|
|
|
int Curl_single_getsock(const struct connectdata *conn,
|
2006-04-10 11:00:53 -04:00
|
|
|
curl_socket_t *socks,
|
|
|
|
int numsocks);
|
2004-11-24 11:11:35 -05:00
|
|
|
CURLcode Curl_readrewind(struct connectdata *conn);
|
2004-06-21 10:07:38 -04:00
|
|
|
CURLcode Curl_fillreadbuffer(struct connectdata *conn, int bytes, int *nreadp);
|
2009-08-21 08:01:36 -04:00
|
|
|
CURLcode Curl_retry_request(struct connectdata *conn, char **url);
|
2016-06-21 09:47:12 -04:00
|
|
|
bool Curl_meets_timecondition(struct Curl_easy *data, time_t timeofdoc);
|
2006-09-07 17:49:20 -04:00
|
|
|
|
2001-03-09 10:17:09 -05:00
|
|
|
/* This sets up a forthcoming transfer */
|
2010-04-16 17:43:04 -04:00
|
|
|
void
|
2006-09-07 17:49:20 -04:00
|
|
|
Curl_setup_transfer (struct connectdata *data,
|
2004-10-06 03:50:18 -04: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-10 11:01:47 -05:00
|
|
|
very well be the same we read from.
|
|
|
|
-1 disables */
|
2004-01-22 07:45:50 -05:00
|
|
|
curl_off_t *writecountp /* return number of bytes written */
|
1999-12-29 09:20:26 -05:00
|
|
|
);
|
2010-03-26 18:33:02 -04:00
|
|
|
|
2012-12-28 06:03:09 -05:00
|
|
|
#endif /* HEADER_CURL_TRANSFER_H */
|
|
|
|
|