]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
added #include <timeval.h> on Jörn's advice
authorDaniel Stenberg <daniel@haxx.se>
Wed, 16 Feb 2000 00:02:40 +0000 (00:02 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 16 Feb 2000 00:02:40 +0000 (00:02 +0000)
added lastshow to the progress struct

lib/urldata.h

index 3f8298829be92945eabd1e744ad0f9d44daf2dd3..fa4683f284e981223ac1f86ad12197578b2f5bab 100644 (file)
@@ -87,6 +87,7 @@
 #endif
 #endif
 
+#include "timeval.h"
 
 /* Download buffer size, keep it fairly big for speed reasons */
 #define BUFSIZE (1024*50)
@@ -96,6 +97,8 @@
 #define HEADERSIZE 256
 
 struct Progress {
+  long lastshow; /* time() of the last displayed progress meter or NULL to
+                    force redraw at next call */
   double size_dl;
   double size_ul;
   double downloaded;