aboutsummaryrefslogtreecommitdiff
path: root/lib/progress.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-04-18 07:25:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-04-18 07:25:11 +0000
commit3fd65fb7d83a8e3e6acd1a40c48b46088ebd536f (patch)
tree13701e723f62ff38452b3c6096eaa98444d9d190 /lib/progress.h
parentebcafe73b313e70b19e4f7b806e020e59f84c5b1 (diff)
Remade resume stuff to keep data in the connectdata struct instead of the
main handle struct to work with persistant connections
Diffstat (limited to 'lib/progress.h')
-rw-r--r--lib/progress.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/progress.h b/lib/progress.h
index 04b3d6c24..55ceb7422 100644
--- a/lib/progress.h
+++ b/lib/progress.h
@@ -36,13 +36,13 @@ typedef enum {
TIMER_LAST /* must be last */
} timerid;
-void Curl_pgrsDone(struct UrlData *data);
+void Curl_pgrsDone(struct connectdata *);
void Curl_pgrsStartNow(struct UrlData *data);
void Curl_pgrsSetDownloadSize(struct UrlData *data, double size);
void Curl_pgrsSetUploadSize(struct UrlData *data, double size);
void Curl_pgrsSetDownloadCounter(struct UrlData *data, double size);
void Curl_pgrsSetUploadCounter(struct UrlData *data, double size);
-int Curl_pgrsUpdate(struct UrlData *data);
+int Curl_pgrsUpdate(struct connectdata *);
void Curl_pgrsTime(struct UrlData *data, timerid timer);