aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-13 07:53:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-13 07:53:59 +0000
commit70d0d9d4daa502affca0c9ddcd1522330d3d7b5f (patch)
tree92e2fb33c404b23199af82477d196e4b7f49bdd1
parent4ae3bd71ea5b29f60cfe7835c171661b5066081a (diff)
Added 'created' to the connectdata struct to hold the creation date, to
be used for the close policy decision
-rw-r--r--lib/urldata.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 93d965efd..53ff3427e 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -227,7 +227,8 @@ struct connectdata {
char *proxyhost; /* name of the http proxy host */
- struct timeval now; /* current time */
+ struct timeval now; /* "current" time */
+ struct timeval created; /* creation time */
int firstsocket; /* the main socket to use */
int secondarysocket; /* for i.e ftp transfers */