aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-11-06 15:31:10 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-11-06 15:31:10 +0000
commit71fb70116891920a71eeaa9daac7f54294e8caf7 (patch)
tree4633d0fc0f89434836686674c1bd320fb55c8685 /lib/urldata.h
parentb6bb734215a40238ada3a02c9fcddcf5bf934c2c (diff)
adjusted the time-keeping function to work better for location following
requests
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 12046bfda..857e5e93f 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -244,10 +244,11 @@ struct Progress {
double ulspeed;
struct timeval start;
+ struct timeval t_startsingle;
/* various data stored for possible later report */
- struct timeval t_nslookup;
- struct timeval t_connect;
- struct timeval t_pretransfer;
+ double t_nslookup;
+ double t_connect;
+ double t_pretransfer;
int httpcode;
#define CURR_TIME 5
@@ -271,6 +272,8 @@ struct HTTP {
struct Form form;
size_t (*storefread)(char *, size_t , size_t , FILE *);
FILE *in;
+
+ long followlocation;
};
/****************************************************************************