CURLOPT_HTTP_VERSION.3 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, 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 http://curl.haxx.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_HTTP_VERSION 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_HTTP_VERSION \- specify HTTP protocol version to use
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_HTTP_VERSION, long version);
  29. .SH DESCRIPTION
  30. Pass \fIversion\fP a long, set to one of the values described below. They
  31. force libcurl to use the specific HTTP versions. This is not sensible to do
  32. unless you have a good reason. You have to set this option if you want to use
  33. libcurl's HTTP/2 support.
  34. .IP CURL_HTTP_VERSION_NONE
  35. We don't care about what version the library uses. libcurl will use whatever
  36. it thinks fit.
  37. .IP CURL_HTTP_VERSION_1_0
  38. Enforce HTTP 1.0 requests.
  39. .IP CURL_HTTP_VERSION_1_1
  40. Enforce HTTP 1.1 requests.
  41. .IP CURL_HTTP_VERSION_2_0
  42. Attempt HTTP 2.0 requests. libcurl will fall back to HTTP 1.x if HTTP 2.0
  43. can't be negotiated with the server.
  44. .SH DEFAULT
  45. CURL_HTTP_VERSION_NONE
  46. .SH PROTOCOLS
  47. HTTP
  48. .SH EXAMPLE
  49. TODO
  50. .SH AVAILABILITY
  51. Along with HTTP
  52. .SH RETURN VALUE
  53. Returns CURLE_OK if HTTP is supported, and CURLE_UNKNOWN_OPTION if not.
  54. .SH "SEE ALSO"
  55. .BR CURLOPT_SSLVERSION "(3), " CURLOPT_HTTP200ALIASES "(3), "