From: Daniel Stenberg Date: Tue, 13 Mar 2001 07:53:59 +0000 (+0000) Subject: Added 'created' to the connectdata struct to hold the creation date, to X-Git-Tag: upstream/7.37.1~16985 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=70d0d9d4daa502affca0c9ddcd1522330d3d7b5f;p=platform%2Fupstream%2Fcurl.git Added 'created' to the connectdata struct to hold the creation date, to be used for the close policy decision --- diff --git a/lib/urldata.h b/lib/urldata.h index 93d965e..53ff342 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 */