mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
parent
37c6744997
commit
ad42850b23
@ -23,6 +23,6 @@ used. Setting this delay to zero makes curl use the default backoff time.
|
||||
|
||||
By default, curl uses an exponentially increasing timeout between retries.
|
||||
|
||||
Staring in curl 8.16.0, this option accepts a time as decimal number for parts
|
||||
Starting in curl 8.16.0, this option accepts a time as decimal number for parts
|
||||
of seconds. The decimal value needs to be provided using a dot (.) as decimal
|
||||
separator - not the local version even if it might be using another separator.
|
||||
|
||||
@ -23,6 +23,6 @@ while performing, it may take longer than this given time period. To limit a
|
||||
single request's maximum time, use --max-time. Set this option to zero to not
|
||||
timeout retries.
|
||||
|
||||
Staring in curl 8.16.0, this option accepts a time as decimal number for parts
|
||||
Starting in curl 8.16.0, this option accepts a time as decimal number for parts
|
||||
of seconds. The decimal value needs to be provided using a dot (.) as decimal
|
||||
separator - not the local version even if it might be using another separator.
|
||||
|
||||
@ -68,7 +68,7 @@ static size_t readcb(char *buf, size_t nitems, size_t buflen, void *p)
|
||||
result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
|
||||
(curl_off_t)ctx->blen);
|
||||
if(result) {
|
||||
fprintf(stderr, "error staring frame: %d\n", result);
|
||||
fprintf(stderr, "error starting frame: %d\n", result);
|
||||
return CURL_READFUNC_ABORT;
|
||||
}
|
||||
}
|
||||
|
||||
@ -84,7 +84,7 @@ static size_t readcb(char *buf, size_t nitems, size_t buflen, void *p)
|
||||
result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
|
||||
(curl_off_t)ctx->msg_len);
|
||||
if(result) {
|
||||
fprintf(stderr, "error staring frame: %d\n", result);
|
||||
fprintf(stderr, "error starting frame: %d\n", result);
|
||||
return CURL_READFUNC_ABORT;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user