diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-10-19 17:48:51 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-10-19 17:48:51 +0200 |
commit | 65ca4b547b8fb8cf677c6936409f4bf25585a49b (patch) | |
tree | 9be9d0b4d573c6f051040640a6e78df5c1bc45d9 | |
parent | d09a905751c2024f7dab0d1a9cb90421cf82011a (diff) |
curl_easy_setopt.3: CURLOPT_USE_SSL is not just for FTP
It is for FTP, SMTP, POP3, IMAP at least.
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 60a496d1a..e4bf8656f 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -1339,7 +1339,9 @@ from the 227-response. (Added in 7.14.2) This option has no effect if PORT, EPRT or EPSV is used instead of PASV. .IP CURLOPT_USE_SSL Pass a long using one of the values from below, to make libcurl use your -desired level of SSL for the FTP transfer. (Added in 7.11.0) +desired level of SSL for the transfer. (Added in 7.11.0) + +This is for enabling SSL/TLS when you use FTP, SMTP, POP3, IMAP erc. (This option was known as CURLOPT_FTP_SSL up to 7.16.4, and the constants were known as CURLFTPSSL_*) |