From: Daniel Stenberg Date: Wed, 1 Mar 2000 22:06:57 +0000 (+0000) Subject: Added more variables to the progress struct targeted for statistics output X-Git-Tag: upstream/7.37.1~17931 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf23986a700a94973d3a920ac334c9032bc1404e;p=platform%2Fupstream%2Fcurl.git Added more variables to the progress struct targeted for statistics output --- diff --git a/lib/urldata.h b/lib/urldata.h index c7fa230..0515d68 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -109,10 +109,16 @@ struct Progress { int mode; /* what kind of progress meter to display */ int width; /* screen width at download start */ int flags; /* see progress.h */ - struct timeval start; double timespent; double dlspeed; double ulspeed; + + struct timeval start; + /* various data stored for possible later report */ + struct timeval t_nslookup; + struct timeval t_connect; + struct timeval t_pretransfer; + int httpcode; }; struct UrlData {