Loading docs/libcurl/opts/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -38,7 +38,11 @@ The default value is 0, which means that the penalization is inactive. .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); long maxchunk = 10000; curl_multi_setopt(m, CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE, maxchunk); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading docs/libcurl/opts/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -38,7 +38,11 @@ The default value is 0, which means that the size penalization is inactive. .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); long maxlength = 10000; curl_multi_setopt(m, CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE, maxlength); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading docs/libcurl/opts/CURLMOPT_MAXCONNECTS.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -51,7 +51,11 @@ See DESCRIPTION .SH PROTOCOLS .SH PROTOCOLS All All .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); /* only keep 10 connections in the cache */ curl_multi_setopt(m, CURLMOPT_MAXCONNECTS, 10L); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.16.3 Added in 7.16.3 .SH RETURN VALUE .SH RETURN VALUE Loading docs/libcurl/opts/CURLMOPT_MAX_HOST_CONNECTIONS.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -49,7 +49,11 @@ considered to be the host for which this limit counts. .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); /* do no more than 2 connections per host */ curl_multi_setopt(m, CURLMOPT_MAX_HOST_CONNECTIONS, 2L); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading docs/libcurl/opts/CURLMOPT_MAX_PIPELINE_LENGTH.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -42,7 +42,11 @@ total number of requests in-flight is \fICURLMOPT_MAX_HOST_CONNECTIONS(3)\fP * .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); /* set a more conservative pipe length */ curl_multi_setopt(m, CURLMOPT_MAX_PIPELINE_LENGTH, 3L); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading Loading
docs/libcurl/opts/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -38,7 +38,11 @@ The default value is 0, which means that the penalization is inactive. .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); long maxchunk = 10000; curl_multi_setopt(m, CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE, maxchunk); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading
docs/libcurl/opts/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -38,7 +38,11 @@ The default value is 0, which means that the size penalization is inactive. .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); long maxlength = 10000; curl_multi_setopt(m, CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE, maxlength); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading
docs/libcurl/opts/CURLMOPT_MAXCONNECTS.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -51,7 +51,11 @@ See DESCRIPTION .SH PROTOCOLS .SH PROTOCOLS All All .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); /* only keep 10 connections in the cache */ curl_multi_setopt(m, CURLMOPT_MAXCONNECTS, 10L); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.16.3 Added in 7.16.3 .SH RETURN VALUE .SH RETURN VALUE Loading
docs/libcurl/opts/CURLMOPT_MAX_HOST_CONNECTIONS.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -49,7 +49,11 @@ considered to be the host for which this limit counts. .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); /* do no more than 2 connections per host */ curl_multi_setopt(m, CURLMOPT_MAX_HOST_CONNECTIONS, 2L); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading
docs/libcurl/opts/CURLMOPT_MAX_PIPELINE_LENGTH.3 +6 −2 Original line number Original line Diff line number Diff line Loading @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * \___|\___/|_| \_\_____| .\" * .\" * .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. .\" * .\" * .\" * This software is licensed as described in the file COPYING, which .\" * This software is licensed as described in the file COPYING, which .\" * you should have received as part of this distribution. The terms .\" * you should have received as part of this distribution. The terms Loading Loading @@ -42,7 +42,11 @@ total number of requests in-flight is \fICURLMOPT_MAX_HOST_CONNECTIONS(3)\fP * .SH PROTOCOLS .SH PROTOCOLS HTTP(S) HTTP(S) .SH EXAMPLE .SH EXAMPLE TODO .nf CURLM *m = curl_multi_init(); /* set a more conservative pipe length */ curl_multi_setopt(m, CURLMOPT_MAX_PIPELINE_LENGTH, 3L); .fi .SH AVAILABILITY .SH AVAILABILITY Added in 7.30.0 Added in 7.30.0 .SH RETURN VALUE .SH RETURN VALUE Loading