Skip to content
Snippets Groups Projects
Commit f4898981 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

added #include <timeval.h> on Jörn's advice

added lastshow to the progress struct
parent 8ed78f6c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment