Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

curlopt_low_speed_limit(3) [mojave man page]

CURLOPT_LOW_SPEED_LIMIT(3)				     curl_easy_setopt options					CURLOPT_LOW_SPEED_LIMIT(3)

NAME
CURLOPT_LOW_SPEED_LIMIT - set low speed limit in bytes per second SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_LOW_SPEED_LIMIT, long speedlimit); DESCRIPTION
Pass a long as parameter. It contains the average transfer speed in bytes per second that the transfer should be below during CUR- LOPT_LOW_SPEED_TIME(3) seconds for libcurl to consider it to be too slow and abort. DEFAULT
0, disabled PROTOCOLS
All EXAMPLE
TODO AVAILABILITY
Always RETURN VALUE
Returns CURLE_OK SEE ALSO
CURLOPT_LOW_SPEED_TIME(3), CURLOPT_TIMEOUT(3), libcurl 7.54.0 February 03, 2016 CURLOPT_LOW_SPEED_LIMIT(3)

Check Out this Related Man Page

CURLOPT_FTP_RESPONSE_TIMEOUT(3) 			     curl_easy_setopt options				   CURLOPT_FTP_RESPONSE_TIMEOUT(3)

NAME
CURLOPT_FTP_RESPONSE_TIMEOUT - time allowed to wait for FTP response SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_FTP_RESPONSE_TIMEOUT, long timeout); DESCRIPTION
Pass a long. Causes libcurl to set a timeout period (in seconds) on the amount of time that the server is allowed to take in order to send a response message for a command before the session is considered dead. While libcurl is waiting for a response, this value overrides CUR- LOPT_TIMEOUT(3). It is recommended that if used in conjunction with CURLOPT_TIMEOUT(3), you set CURLOPT_FTP_RESPONSE_TIMEOUT(3) to a value smaller than CURLOPT_TIMEOUT(3). DEFAULT
None PROTOCOLS
FTP EXAMPLE
TODO AVAILABILITY
Added in 7.10.8 RETURN VALUE
Returns CURLE_OK if FTP is supported, and CURLE_UNKNOWN_OPTION if not. SEE ALSO
CURLOPT_TIMEOUT(3), CURLOPT_CONNECTTIMEOUT(3), CURLOPT_LOW_SPEED_LIMIT(3), libcurl 7.54.0 February 03, 2016 CURLOPT_FTP_RESPONSE_TIMEOUT(3)
Man Page