diff options
author | Jan Van Boghout <lists@macrabbit.com> | 2010-07-18 00:49:29 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-07-18 00:49:29 +0200 |
commit | 7abf3b97fe89d3455c5f3bb115d31e3dad4476a0 (patch) | |
tree | 6630ab3497b2105a105d4cca4ceb365a7672d554 /lib/pingpong.h | |
parent | 4a1384a8b4c2024e3ee51938d7a9a77e76289695 (diff) | |
download | curl-7abf3b97fe89d3455c5f3bb115d31e3dad4476a0.tar.gz |
pingpong: response_time is milliseconds
Fixed the comment/document for the response_time struct member.
Diffstat (limited to 'lib/pingpong.h')
-rw-r--r-- | lib/pingpong.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pingpong.h b/lib/pingpong.h index a629aeee3..cbbff8f3e 100644 --- a/lib/pingpong.h +++ b/lib/pingpong.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2007, 2009, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -56,7 +56,7 @@ struct pingpong { struct timeval response; /* set to Curl_tvnow() when a command has been sent off, used to time-out response reading */ long response_time; /* When no timeout is given, this is the amount of - seconds we await for a server response. */ + milliseconds we await for a server response. */ struct connectdata *conn; /* points to the connectdata struct that this belongs to */ |