aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-10-04 23:46:45 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-10-04 23:46:45 +0200
commit15aefc6adc89322e975915625a121aebda7fda66 (patch)
tree5a600b65681946e2ddc9130a5bd06cda486b68d7 /docs/libcurl
parent8fd2a754f0de4537286816ea8f52b7184e7b2d3d (diff)
CURLOPT_KEEP_SENDING_ON_ERROR.3: mention when it is added
Diffstat (limited to 'docs/libcurl')
-rw-r--r--docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.36
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3 b/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3
index 4ddd8687c..277125b60 100644
--- a/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3
+++ b/docs/libcurl/opts/CURLOPT_KEEP_SENDING_ON_ERROR.3
@@ -26,7 +26,8 @@ CURLOPT_KEEP_SENDING_ON_ERROR \- keep sending on early HTTP response >= 300
.SH SYNOPSIS
#include <curl/curl.h>
-CURLcode curl_easy_setopt(CURL *handle, CURLOPT_KEEP_SENDING_ON_ERROR, long keep_sending);
+CURLcode curl_easy_setopt(CURL *handle, CURLOPT_KEEP_SENDING_ON_ERROR,
+ long keep_sending);
.SH DESCRIPTION
A long parameter set to 1 tells the library to keep sending the request body
if the HTTP code returned is equal to or larger than 300. The default action
@@ -37,7 +38,6 @@ does not use \fICURLOPT_HTTPAUTH(3)\fP, but instead sets "Authorization: NTLM ..
headers manually using \fICURLOPT_HTTPHEADER(3)\fP.
Most applications do not need this option.
-
.SH DEFAULT
0, stop sending on error
.SH PROTOCOLS
@@ -45,7 +45,7 @@ HTTP
.SH EXAMPLE
TODO
.SH AVAILABILITY
-Along with HTTP
+Along with HTTP. Added in 7.51.0.
.SH RETURN VALUE
Returns CURLE_OK if HTTP is enabled, and CURLE_UNKNOWN_OPTION if not.
.SH "SEE ALSO"