2012-12-28 06:03:09 -05:00
|
|
|
#ifndef HEADER_CURL_PROGRESS_H
|
|
|
|
#define HEADER_CURL_PROGRESS_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-11-15 06:27:03 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2018-03-10 08:07:38 -05:00
|
|
|
* Copyright (C) 1998 - 2018, 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-11-15 06:27:03 -05: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
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "timeval.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-02-14 18:15:08 -05:00
|
|
|
|
2000-04-11 17:48:33 -04:00
|
|
|
typedef enum {
|
|
|
|
TIMER_NONE,
|
2014-05-15 14:43:32 -04:00
|
|
|
TIMER_STARTOP,
|
|
|
|
TIMER_STARTSINGLE,
|
2000-04-11 17:48:33 -04:00
|
|
|
TIMER_NAMELOOKUP,
|
|
|
|
TIMER_CONNECT,
|
2008-07-03 02:56:03 -04:00
|
|
|
TIMER_APPCONNECT,
|
2000-04-11 17:48:33 -04:00
|
|
|
TIMER_PRETRANSFER,
|
2001-11-20 10:00:50 -05:00
|
|
|
TIMER_STARTTRANSFER,
|
2000-04-11 17:48:33 -04:00
|
|
|
TIMER_POSTRANSFER,
|
2011-12-19 08:35:20 -05:00
|
|
|
TIMER_STARTACCEPT,
|
2002-04-16 03:59:20 -04:00
|
|
|
TIMER_REDIRECT,
|
2000-04-11 17:48:33 -04:00
|
|
|
TIMER_LAST /* must be last */
|
|
|
|
} timerid;
|
2004-11-15 06:27:03 -05:00
|
|
|
|
2012-06-10 17:39:04 -04:00
|
|
|
int Curl_pgrsDone(struct connectdata *);
|
2016-06-21 09:47:12 -04: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 11:43:00 -04:00
|
|
|
void Curl_ratelimit(struct Curl_easy *data, struct curltime now);
|
2001-04-18 03:25:11 -04:00
|
|
|
int Curl_pgrsUpdate(struct connectdata *);
|
2017-06-21 13:15:46 -04:00
|
|
|
void Curl_pgrsResetTransferSizes(struct Curl_easy *data);
|
2016-06-21 09:47:12 -04:00
|
|
|
void Curl_pgrsTime(struct Curl_easy *data, timerid timer);
|
2018-03-10 08:07:38 -05: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 09:20:26 -05:00
|
|
|
|
2000-02-14 18:15:08 -05: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 06:03:09 -05:00
|
|
|
#endif /* HEADER_CURL_PROGRESS_H */
|