diff --git a/lib/urldata.h b/lib/urldata.h index c7fa230c51a22764854518c114156b2dd610550e..0515d6817e39b752fdb10391a9cfd9161331f8df 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 {