Imported Upstream version 7.48.0
[platform/upstream/curl.git] / docs / libcurl / opts / CURLMOPT_MAX_HOST_CONNECTIONS.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2015, 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_HOST_CONNECTIONS 3 "17 Jun 2014" "libcurl 7.37.0" "curl_multi_setopt options"
24 .SH NAME
25 CURLMOPT_MAX_HOST_CONNECTIONS \- set max number of connections to a single host
26 .SH SYNOPSIS
27 #include <curl/curl.h>
28
29 CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_MAX_HOST_CONNECTIONS, long max);
30 .SH DESCRIPTION
31 Pass a long to indicate \fBmax\fP. The set number will be used as the maximum
32 amount of simultaneously open connections to a single host (a host being the
33 same as a host name + port number pair). For each new session to a host,
34 libcurl will open a new connection up to the limit set by
35 \fICURLMOPT_MAX_HOST_CONNECTIONS(3)\fP. When the limit is reached, the
36 sessions will be pending until a connection becomes available. If
37 \fICURLMOPT_PIPELINING(3)\fP is enabled, libcurl will try to pipeline if the
38 host is capable of it.
39
40 The default \fBmax\fP value is 0, unlimited.  However, for backwards
41 compatibility, setting it to 0 when \fICURLMOPT_PIPELINING(3)\fP is 1 will not
42 be treated as unlimited. Instead it will open only 1 connection and try to
43 pipeline on it.
44
45 This set limit is also used for proxy connections, and then the proxy is
46 considered to be the host for which this limit counts.
47 .SH DEFAULT
48 0
49 .SH PROTOCOLS
50 HTTP(S)
51 .SH EXAMPLE
52 TODO
53 .SH AVAILABILITY
54 Added in 7.30.0
55 .SH RETURN VALUE
56 Returns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION if not.
57 .SH "SEE ALSO"
58 .BR CURLMOPT_MAXCONNECTS "(3), " CURLMOPT_MAX_TOTAL_CONNECTIONS "(3), "