CURLOPT_PROXY_SSLVERSION.3 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, 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_PROXY_SSLVERSION 3 "16 Nov 2016" "libcurl 7.52.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_PROXY_SSLVERSION \- preferred HTTPS proxy TLS version
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY_SSLVERSION,
  30. long version);
  31. .fi
  32. .SH DESCRIPTION
  33. Pass a long as parameter to control which version of SSL/TLS to attempt to use
  34. when connecting to an HTTPS proxy.
  35. Use one of the available defines for this purpose. The available options are:
  36. .RS
  37. .IP CURL_SSLVERSION_DEFAULT
  38. The default action. This will attempt to figure out the remote SSL protocol
  39. version.
  40. .IP CURL_SSLVERSION_TLSv1
  41. TLSv1.x
  42. .IP CURL_SSLVERSION_TLSv1_0
  43. TLSv1.0
  44. .IP CURL_SSLVERSION_TLSv1_1
  45. TLSv1.1
  46. .IP CURL_SSLVERSION_TLSv1_2
  47. TLSv1.2
  48. .IP CURL_SSLVERSION_TLSv1_3
  49. TLSv1.3
  50. .RE
  51. The maximum TLS version can be set by using \fIone\fP of the
  52. CURL_SSLVERSION_MAX_ macros below. It is also possible to OR \fIone\fP of the
  53. CURL_SSLVERSION_ macros with \fIone\fP of the CURL_SSLVERSION_MAX_ macros.
  54. The MAX macros are not supported for WolfSSL.
  55. .RS
  56. .IP CURL_SSLVERSION_MAX_DEFAULT
  57. The flag defines the maximum supported TLS version as TLSv1.2, or the default
  58. value from the SSL library.
  59. (Added in 7.54.0)
  60. .IP CURL_SSLVERSION_MAX_TLSv1_0
  61. The flag defines maximum supported TLS version as TLSv1.0.
  62. (Added in 7.54.0)
  63. .IP CURL_SSLVERSION_MAX_TLSv1_1
  64. The flag defines maximum supported TLS version as TLSv1.1.
  65. (Added in 7.54.0)
  66. .IP CURL_SSLVERSION_MAX_TLSv1_2
  67. The flag defines maximum supported TLS version as TLSv1.2.
  68. (Added in 7.54.0)
  69. .IP CURL_SSLVERSION_MAX_TLSv1_3
  70. The flag defines maximum supported TLS version as TLSv1.3.
  71. (Added in 7.54.0)
  72. .RE
  73. In versions of curl prior to 7.54 the CURL_SSLVERSION_TLS options were
  74. documented to allow \fIonly\fP the specified TLS version, but behavior was
  75. inconsistent depending on the TLS library.
  76. .SH DEFAULT
  77. CURL_SSLVERSION_DEFAULT
  78. .SH PROTOCOLS
  79. All
  80. .SH EXAMPLE
  81. .nf
  82. CURL *curl = curl_easy_init();
  83. if(curl) {
  84. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
  85. /* ask libcurl to use TLS version 1.0 or later */
  86. curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
  87. /* Perform the request */
  88. curl_easy_perform(curl);
  89. }
  90. .fi
  91. .SH AVAILABILITY
  92. Added in 7.52.0
  93. .SH RETURN VALUE
  94. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  95. .SH "SEE ALSO"
  96. .BR CURLOPT_USE_SSL "(3), " CURLOPT_HTTP_VERSION "(3), "
  97. .BR CURLOPT_IPRESOLVE "(3) " CURLOPT_SSLVERSION "(3), "