CURLOPT_USE_SSL.3 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 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. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .\"
  25. .TH CURLOPT_USE_SSL 3 "January 02, 2023" "libcurl 7.88.1" "curl_easy_setopt options"
  26. .SH NAME
  27. CURLOPT_USE_SSL \- request using SSL / TLS for the transfer
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/curl.h>
  31. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_USE_SSL, long level);
  32. .fi
  33. .SH DESCRIPTION
  34. Pass a long using one of the values from below, to make libcurl use your
  35. desired \fIlevel\fP of SSL for the transfer.
  36. These are all protocols that start out plain text and get "upgraded" to SSL
  37. using the STARTTLS command.
  38. This is for enabling SSL/TLS when you use FTP, SMTP, POP3, IMAP etc.
  39. .IP CURLUSESSL_NONE
  40. do not attempt to use SSL.
  41. .IP CURLUSESSL_TRY
  42. Try using SSL, proceed as normal otherwise. Note that server may close the
  43. connection if the negotiation does not succeed.
  44. .IP CURLUSESSL_CONTROL
  45. Require SSL for the control connection or fail with \fICURLE_USE_SSL_FAILED\fP.
  46. .IP CURLUSESSL_ALL
  47. Require SSL for all communication or fail with \fICURLE_USE_SSL_FAILED\fP.
  48. .SH DEFAULT
  49. CURLUSESSL_NONE
  50. .SH PROTOCOLS
  51. FTP, SMTP, POP3, IMAP, LDAP
  52. .SH EXAMPLE
  53. .nf
  54. CURL *curl = curl_easy_init();
  55. if(curl) {
  56. curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/dir/file.ext");
  57. /* require use of SSL for this, or fail */
  58. curl_easy_setopt(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_ALL);
  59. /* Perform the request */
  60. curl_easy_perform(curl);
  61. }
  62. .fi
  63. .SH AVAILABILITY
  64. Added in 7.11.0. This option was known as CURLOPT_FTP_SSL up to 7.16.4, and
  65. the constants were known as CURLFTPSSL_*
  66. Handled by LDAP since 7.81.0. Fully supported by the OpenLDAP backend only.
  67. .SH RETURN VALUE
  68. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  69. .SH "SEE ALSO"
  70. .BR CURLOPT_SSLVERSION "(3), " CURLOPT_PROXY_SSLVERSION "(3), "
  71. .BR CURLOPT_SSL_OPTIONS "(3), "