CURLOPT_USE_SSL.3 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_USE_SSL 3 "19 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_USE_SSL \- request using SSL / TLS for the transfer
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_USE_SSL, long level);
  29. .SH DESCRIPTION
  30. Pass a long using one of the values from below, to make libcurl use your
  31. desired \fIlevel\fP of SSL for the transfer.
  32. These are all protocols that start out plain text and get "upgraded" to SSL
  33. using the STARTTLS command.
  34. This is for enabling SSL/TLS when you use FTP, SMTP, POP3, IMAP etc.
  35. .IP CURLUSESSL_NONE
  36. Don't attempt to use SSL.
  37. .IP CURLUSESSL_TRY
  38. Try using SSL, proceed as normal otherwise.
  39. .IP CURLUSESSL_CONTROL
  40. Require SSL for the control connection or fail with \fICURLE_USE_SSL_FAILED\fP.
  41. .IP CURLUSESSL_ALL
  42. Require SSL for all communication or fail with \fICURLE_USE_SSL_FAILED\fP.
  43. .SH DEFAULT
  44. CURLUSESSL_NONE
  45. .SH PROTOCOLS
  46. FTP, SMTP, POP3, IMAP
  47. .SH EXAMPLE
  48. .nf
  49. CURL *curl = curl_easy_init();
  50. if(curl) {
  51. curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/dir/file.ext");
  52. /* require use of SSL for this, or fail */
  53. curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_ALL);
  54. /* Perform the request */
  55. curl_easy_perform(curl);
  56. }
  57. .fi
  58. .SH AVAILABILITY
  59. Added in 7.11.0. This option was known as CURLOPT_FTP_SSL up to 7.16.4, and
  60. the constants were known as CURLFTPSSL_*
  61. .SH RETURN VALUE
  62. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  63. .SH "SEE ALSO"
  64. .BR CURLOPT_SSLVERSION "(3), " CURLOPT_PROXY_SSLVERSION "(3), "
  65. .BR CURLOPT_SSL_OPTIONS "(3), "