2012-12-28 19:03:09 +08:00
|
|
|
#ifndef HEADER_CURL_PROGRESS_H
|
|
|
|
#define HEADER_CURL_PROGRESS_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-11-15 19:27:03 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2018-03-10 21:07:38 +08:00
|
|
|
* Copyright (C) 1998 - 2018, 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
|
2016-02-03 07:19:02 +08:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-11-15 19:27:03 +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
|
|
|
***************************************************************************/
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2013-01-04 09:50:28 +08:00
|
|
|
#include "timeval.h"
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2000-02-15 07:15:08 +08:00
|
|
|
|
2000-04-12 05:48:33 +08:00
|
|
|
typedef enum {
|
|
|
|
TIMER_NONE,
|
2014-05-16 02:43:32 +08:00
|
|
|
TIMER_STARTOP,
|
|
|
|
TIMER_STARTSINGLE,
|
2000-04-12 05:48:33 +08:00
|
|
|
TIMER_NAMELOOKUP,
|
|
|
|
TIMER_CONNECT,
|
2008-07-03 14:56:03 +08:00
|
|
|
TIMER_APPCONNECT,
|
2000-04-12 05:48:33 +08:00
|
|
|
TIMER_PRETRANSFER,
|
2001-11-20 23:00:50 +08:00
|
|
|
TIMER_STARTTRANSFER,
|
2000-04-12 05:48:33 +08:00
|
|
|
TIMER_POSTRANSFER,
|
2011-12-19 21:35:20 +08:00
|
|
|
TIMER_STARTACCEPT,
|
2002-04-16 15:59:20 +08:00
|
|
|
TIMER_REDIRECT,
|
2000-04-12 05:48:33 +08:00
|
|
|
TIMER_LAST /* must be last */
|
|
|
|
} timerid;
|
2004-11-15 19:27:03 +08:00
|
|
|
|
2012-06-11 05:39:04 +08:00
|
|
|
int Curl_pgrsDone(struct connectdata *);
|
2016-06-21 21:47:12 +08:00
|
|
|
void Curl_pgrsStartNow(struct Curl_easy *data);
|
|
|
|
void Curl_pgrsSetDownloadSize(struct Curl_easy *data, curl_off_t size);
|
|
|
|
void Curl_pgrsSetUploadSize(struct Curl_easy *data, curl_off_t size);
|
|
|
|
void Curl_pgrsSetDownloadCounter(struct Curl_easy *data, curl_off_t size);
|
|
|
|
void Curl_pgrsSetUploadCounter(struct Curl_easy *data, curl_off_t size);
|
2018-03-15 23:43:00 +08:00
|
|
|
void Curl_ratelimit(struct Curl_easy *data, struct curltime now);
|
2001-04-18 15:25:11 +08:00
|
|
|
int Curl_pgrsUpdate(struct connectdata *);
|
2017-06-22 01:15:46 +08:00
|
|
|
void Curl_pgrsResetTransferSizes(struct Curl_easy *data);
|
2016-06-21 21:47:12 +08:00
|
|
|
void Curl_pgrsTime(struct Curl_easy *data, timerid timer);
|
2018-03-10 21:07:38 +08:00
|
|
|
timediff_t Curl_pgrsLimitWaitTime(curl_off_t cursize,
|
|
|
|
curl_off_t startsize,
|
|
|
|
curl_off_t limit,
|
|
|
|
struct curltime start,
|
|
|
|
struct curltime now);
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2000-02-15 07:15:08 +08:00
|
|
|
#define PGRS_HIDE (1<<4)
|
|
|
|
#define PGRS_UL_SIZE_KNOWN (1<<5)
|
|
|
|
#define PGRS_DL_SIZE_KNOWN (1<<6)
|
|
|
|
#define PGRS_HEADERS_OUT (1<<7) /* set when the headers have been written */
|
|
|
|
|
2012-12-28 19:03:09 +08:00
|
|
|
#endif /* HEADER_CURL_PROGRESS_H */
|
|
|
|
|