diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-09-21 23:30:48 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-22 12:09:13 +0200 |
commit | b8e0fe19ec3bd3b673a14043a4b5e656d9c26d06 (patch) | |
tree | 3b39a3325b56db905891fd624753484c802a18c0 /docs/libcurl | |
parent | ee56fdb6910f6bf215eecede9e2e9bfc83cb5f29 (diff) |
vtls: provide curl_global_sslset() even in non-SSL builds
... it just returns error:
Bug: https://github.com/curl/curl/commit/1328f69d53f2f2e937696ea954c480412b018451#commitcomment-24470367
Reported-by: Marcel Raad
Closes #1906
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_global_sslset.3 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/libcurl/curl_global_sslset.3 b/docs/libcurl/curl_global_sslset.3 index b438f8ad0..cee84458f 100644 --- a/docs/libcurl/curl_global_sslset.3 +++ b/docs/libcurl/curl_global_sslset.3 @@ -85,10 +85,13 @@ support for choosing SSL backends at runtime. If this function returns CURLSSLSET_OK, the backend was successfully selected. If the chosen backend is unknown (or support for the chosed backend has not -been compiled into libcurl), the function returns CURLSSLSET_UNKNOWN_BACKEND. +been compiled into libcurl), the function returns \fICURLSSLSET_UNKNOWN_BACKEND\fP. If the backend had been configured previously, or if \fIcurl_global_init(3)\fP -has already been called, the function returns CURLSSLSET_TOO_LATE. +has already been called, the function returns \fICURLSSLSET_TOO_LATE\fP. + +If this libcurl was built completely without SSL support, with no backends at +all, this function returns \fICURLSSLSET_NO_BACKENDS\fP. .SH "SEE ALSO" .BR curl_global_init "(3), " .BR libcurl "(3) " |