From 4dee50b9c80f9b18d2eb9a1c20bd879abb342302 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 28 Jul 2017 15:49:36 +0200 Subject: timeval: struct curltime is a struct timeval replacement ... to make all libcurl internals able to use the same data types for the struct members. The timeval struct differs subtly on several platforms so it makes it cumbersome to use everywhere. Ref: #1652 Closes #1693 --- lib/conncache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/conncache.h') diff --git a/lib/conncache.h b/lib/conncache.h index f976cfdb4..14be4e8e7 100644 --- a/lib/conncache.h +++ b/lib/conncache.h @@ -27,7 +27,7 @@ struct conncache { struct curl_hash hash; size_t num_connections; long next_connection_id; - struct timeval last_cleanup; + struct curltime last_cleanup; }; #define BUNDLE_NO_MULTIUSE -1 -- cgit v1.2.3