2012-12-28 15:03:09 +04:00
|
|
|
#ifndef HEADER_CURL_TRANSFER_H
|
|
|
|
#define HEADER_CURL_TRANSFER_H
|
2002-09-03 15:52:59 +04:00
|
|
|
/***************************************************************************
|
2004-05-26 01:47:29 +04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 17:20:26 +03:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2022-02-09 02:57:00 +03:00
|
|
|
* Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 17:20:26 +03: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
|
2020-11-04 16:02:01 +03:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-05-26 01:47:29 +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.
|
1999-12-29 17:20:26 +03: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.
|
1999-12-29 17:20:26 +03:00
|
|
|
*
|
2002-09-03 15:52:59 +04:00
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 12:16:50 +03:00
|
|
|
*
|
2002-09-03 15:52:59 +04:00
|
|
|
***************************************************************************/
|
2013-02-01 03:43:20 +04:00
|
|
|
|
2018-03-06 01:38:16 +03:00
|
|
|
#define Curl_headersep(x) ((((x)==':') || ((x)==';')))
|
2021-01-08 19:58:15 +03:00
|
|
|
char *Curl_checkheaders(const struct Curl_easy *data,
|
2022-02-09 02:57:00 +03:00
|
|
|
const char *thisheader,
|
|
|
|
const size_t thislen);
|
2017-09-08 16:13:42 +03:00
|
|
|
|
2016-06-21 16:47:12 +03:00
|
|
|
void Curl_init_CONNECT(struct Curl_easy *data);
|
2015-10-05 21:39:10 +03:00
|
|
|
|
2016-06-21 16:47:12 +03:00
|
|
|
CURLcode Curl_pretransfer(struct Curl_easy *data);
|
|
|
|
CURLcode Curl_posttransfer(struct Curl_easy *data);
|
2008-05-01 01: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
|
2021-01-02 01:41:21 +03:00
|
|
|
redirect following */
|
|
|
|
FOLLOW_REDIR /* a full true redirect */
|
2008-05-01 01:20:08 +04:00
|
|
|
} followtype;
|
|
|
|
|
2016-06-21 16:47:12 +03:00
|
|
|
CURLcode Curl_follow(struct Curl_easy *data, char *newurl,
|
2011-04-20 17:17:42 +04:00
|
|
|
followtype type);
|
2015-05-20 15:33:04 +03:00
|
|
|
CURLcode Curl_readwrite(struct connectdata *conn,
|
2016-08-02 01:48:23 +03:00
|
|
|
struct Curl_easy *data, bool *done,
|
|
|
|
bool *comeback);
|
2021-01-08 19:58:15 +03:00
|
|
|
int Curl_single_getsock(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn, curl_socket_t *socks);
|
2021-01-19 12:24:35 +03:00
|
|
|
CURLcode Curl_readrewind(struct Curl_easy *data);
|
|
|
|
CURLcode Curl_fillreadbuffer(struct Curl_easy *data, size_t bytes,
|
2018-08-31 11:17:40 +03:00
|
|
|
size_t *nreadp);
|
2021-01-19 12:24:35 +03:00
|
|
|
CURLcode Curl_retry_request(struct Curl_easy *data, char **url);
|
2016-06-21 16:47:12 +03:00
|
|
|
bool Curl_meets_timecondition(struct Curl_easy *data, time_t timeofdoc);
|
2018-08-17 01:49:37 +03:00
|
|
|
CURLcode Curl_get_upload_buffer(struct Curl_easy *data);
|
2006-09-08 01:49:20 +04:00
|
|
|
|
2021-01-08 19:58:15 +03:00
|
|
|
CURLcode Curl_done_sending(struct Curl_easy *data,
|
2019-06-24 12:21:26 +03:00
|
|
|
struct SingleRequest *k);
|
|
|
|
|
2001-03-09 18:17:09 +03:00
|
|
|
/* This sets up a forthcoming transfer */
|
2010-04-17 01:43:04 +04:00
|
|
|
void
|
2019-02-28 13:36:26 +03:00
|
|
|
Curl_setup_transfer (struct Curl_easy *data,
|
|
|
|
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 */
|
|
|
|
int writesockindex /* socket index to write to. May be
|
|
|
|
the same we read from. -1
|
|
|
|
disables */
|
|
|
|
);
|
2010-03-27 01:33:02 +03:00
|
|
|
|
2012-12-28 15:03:09 +04:00
|
|
|
#endif /* HEADER_CURL_TRANSFER_H */
|