Searched refs:delay (Results 1 – 24 of 24) sorted by relevance
/curl/docs/cmdline-opts/ |
H A D | retry-delay.md | 4 Long: retry-delay 13 - --retry-delay 5 --retry 7 $URL 16 # `--retry-delay` 21 used. Setting this delay to zero makes curl use the default backoff time.
|
H A D | retry.md | 26 minutes which then remains delay between the rest of the retries. By using 27 --retry-delay you disable this exponential backoff algorithm. See also
|
H A D | rate.md | 13 - retry-delay 41 When retrying transfers, enabled with --retry, the separate retry delay logic
|
H A D | http3.md | 31 versions with a slight delay, so if the HTTP/3 transfer fails or is slow, curl
|
H A D | Makefile.inc | 247 retry-delay.md \
|
/curl/tests/data/ |
H A D | test1269 | 4 --retry-delay 20 too large --retry-delay value 23 --retry 3 --retry-delay 9223372036854776 http://%HOSTIP:%NOLISTENPORT/%TESTNUMBER
|
H A D | test513 | 27 # the 1s post-command delay helps to prevent a spurious failure on s390 28 <command delay="1">
|
H A D | test587 | 34 # Add a delay to give server time to write its output since we otherwise might 36 <command delay="1">
|
H A D | test514 | 38 # the 1s post-command delay helps to prevent a spurious failure on s390 39 <command delay="1">
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_TCP_KEEPIDLE.md | 25 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TCP_KEEPIDLE, long delay); 30 Pass a long. Sets the *delay*, in seconds, to wait while the connection is
|
H A D | CURLOPT_TCP_KEEPALIVE.md | 32 Pass a long. If set to 1, TCP keepalive probes are used. The delay and
|
H A D | CURLINFO_RETRY_AFTER.md | 18 CURLINFO_RETRY_AFTER - returns the Retry-After retry delay
|
H A D | CURLOPT_TCP_NODELAY.md | 41 need to be sent without delay. This is less efficient than sending larger
|
/curl/src/ |
H A D | tool_sleep.c | 49 delay(ms); in tool_go_sleep()
|
H A D | tool_operate.c | 456 long *delay) /* milliseconds! */ in post_per_transfer() argument 464 *delay = 0; /* for no retry, keep it zero */ in post_per_transfer() 704 *delay = sleeptime; in post_per_transfer() 2714 long delay; in check_finished() local 2727 tres = post_per_transfer(global, ended, tres, &retry, &delay); in check_finished() 2734 ended->startat = delay ? time(NULL) + delay/1000 : 0; in check_finished() 3133 long delay; in run_all_transfers() local 3134 CURLcode result2 = post_per_transfer(global, per, result, &retry, &delay); in run_all_transfers()
|
/curl/tests/server/ |
H A D | mqttd.c | 800 int delay = 20; in sockdaemon() local 814 rc = wait_ms(delay); in sockdaemon() 826 totdelay += delay; in sockdaemon() 827 delay *= 2; /* double the sleep for next attempt */ in sockdaemon()
|
H A D | socksd.c | 814 int delay = 20; in sockdaemon() local 828 rc = wait_ms(delay); in sockdaemon() 842 totdelay += delay; in sockdaemon() 843 delay *= 2; /* double the sleep for next attempt */ in sockdaemon()
|
H A D | sockfilt.c | 1220 int delay = 20; in sockdaemon() local 1234 rc = wait_ms(delay); in sockdaemon() 1248 totdelay += delay; in sockdaemon() 1249 delay *= 2; /* double the sleep for next attempt */ in sockdaemon()
|
H A D | sws.c | 110 int delay; /* if non-zero, delay this number of msec after connect */ member 331 req->delay = num; in parse_servercmd() 859 req->delay = 0; in init_httprequest() 2387 if(req->delay) in main() 2388 wait_ms(req->delay); in main()
|
H A D | util.c | 247 delay(timeout_ms); in wait_ms()
|
/curl/tests/http/testenv/mod_curltest/ |
H A D | mod_curltest.c | 333 apr_time_t delay = 0, chunk_delay = 0, close_delay = 0; in curltest_tweak_handler() local 404 rv = duration_parse(&delay, val, "s"); in curltest_tweak_handler() 459 if(delay) { in curltest_tweak_handler() 460 apr_sleep(delay); in curltest_tweak_handler()
|
/curl/tests/ |
H A D | ftpserver.pl | 3293 my $delay = $delayreply{$FTPCMD}; 3294 if($delay) { 3296 logmsg("Sleep for $delay seconds\n"); 3297 my $twentieths = $delay * 20;
|
/curl/docs/ |
H A D | options-in-versions | 213 --retry-delay 7.12.3
|
/curl/lib/ |
H A D | select.c | 81 delay(timeout_ms); in Curl_wait_ms()
|
Completed in 49 milliseconds