CURLMOPT_MAX_PIPELINE_LENGTH.3 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2017, 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.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 CURLMOPT_MAX_PIPELINE_LENGTH 3 "May 27, 2017" "libcurl 7.61.1" "curl_multi_setopt options"
  24. .SH NAME
  25. CURLMOPT_MAX_PIPELINE_LENGTH \- maximum number of requests in a pipeline
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_MAX_PIPELINE_LENGTH, long max);
  29. .SH DESCRIPTION
  30. Pass a long. The set \fBmax\fP number will be used as the maximum amount of
  31. outstanding requests in an HTTP/1.1 pipelined connection. This option is only
  32. used for HTTP/1.1 pipelining, not for HTTP/2 multiplexing.
  33. When this limit is reached, libcurl will use another connection to the same
  34. host (see \fICURLMOPT_MAX_HOST_CONNECTIONS(3)\fP), or queue the request until
  35. one of the pipelines to the host is ready to accept a request. Thus, the
  36. total number of requests in-flight is \fICURLMOPT_MAX_HOST_CONNECTIONS(3)\fP *
  37. \fICURLMOPT_MAX_PIPELINE_LENGTH(3)\fP.
  38. .SH DEFAULT
  39. 5
  40. .SH PROTOCOLS
  41. HTTP(S)
  42. .SH EXAMPLE
  43. .nf
  44. CURLM *m = curl_multi_init();
  45. /* set a more conservative pipe length */
  46. curl_multi_setopt(m, CURLMOPT_MAX_PIPELINE_LENGTH, 3L);
  47. .fi
  48. .SH AVAILABILITY
  49. Added in 7.30.0
  50. .SH RETURN VALUE
  51. Returns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION if not.
  52. .SH "SEE ALSO"
  53. .BR CURLMOPT_PIPELINING "(3), " CURLMOPT_MAX_HOST_CONNECTIONS "(3), "