aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-11-05 21:46:40 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-11-05 21:46:40 +0000
commitb80c5cff49a6df5835ed8bbf1948c4bc4b98c8d3 (patch)
tree71f1c0bae2a5ac038aea1e636bbab476900076f4 /lib/url.c
parent47b5740bdf3998bdf1c4d4f1186f68eb9ad1b614 (diff)
corrected and clarified the *_SPEED_LARGE comments
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/url.c b/lib/url.c
index 8612262be..75f9e099d 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -1487,17 +1487,15 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option,
break;
case CURLOPT_MAX_SEND_SPEED_LARGE:
/*
- * The max speed limit that sends transfer more than
- * CURLOPT_MAX_SEND_PER_SECOND bytes per second the transfer is
- * throttled..
+ * When transfer uploads are faster then CURLOPT_MAX_SEND_SPEED_LARGE
+ * bytes per second the transfer is throttled..
*/
data->set.max_send_speed=va_arg(param, curl_off_t);
break;
case CURLOPT_MAX_RECV_SPEED_LARGE:
/*
- * The max speed limit that sends transfer more than
- * CURLOPT_MAX_RECV_PER_SECOND bytes per second the transfer is
- * throttled..
+ * When receiving data faster than CURLOPT_MAX_RECV_SPEED_LARGE bytes per
+ * second the transfer is throttled..
*/
data->set.max_recv_speed=va_arg(param, curl_off_t);
break;