diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-03-01 22:05:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-03-01 22:05:11 +0000 |
commit | dfd341efd536244d6b12945ba039044b47626eed (patch) | |
tree | 8df1181a7ade85fdfd9f55d74c188daee03fbdd3 | |
parent | 28011b8f9cae46886fd3b4cdec87200df49e6b89 (diff) |
Added two new time stamp places
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1052,6 +1052,7 @@ static UrgError _urlget(struct UrlData *data) return URG_COULDNT_RESOLVE_PROXY; } } + pgrsTime(data, TIMER_NAMELOOKUP); data->firstsocket = socket(AF_INET, SOCK_STREAM, 0); @@ -1148,6 +1149,7 @@ static UrgError _urlget(struct UrlData *data) return URG_SSL_CONNECT_ERROR; } } + pgrsTime(data, TIMER_CONNECT); now = tvnow(); /* time this *after* the connect is done */ bytecount = 0; |