Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

curlmopt_pipelining_site_bl(3) [mojave man page]

CURLMOPT_PIPELINING_SITE_BL(3)				     curl_multi_setopt options				    CURLMOPT_PIPELINING_SITE_BL(3)

NAME
CURLMOPT_PIPELINING_SITE_BL - pipelining host blacklist SYNOPSIS
#include <curl/curl.h> CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_PIPELINING_SITE_BL, char **hosts); DESCRIPTION
Pass a hosts array of char *, ending with a NULL entry. This is a list of sites that are blacklisted from pipelining, i.e sites that are known to not support HTTP pipelining. The array is copied by libcurl. Pass a NULL pointer to clear the blacklist. DEFAULT
The default value is NULL, which means that there is no blacklist. PROTOCOLS
HTTP(S) EXAMPLE
site_blacklist[] = { "www.haxx.se", "www.example.com:1234", NULL }; curl_multi_setopt(m, CURLMOPT_PIPELINING_SITE_BL, site_blacklist); AVAILABILITY
Added in 7.30.0 RETURN VALUE
Returns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION if not. SEE ALSO
CURLMOPT_PIPELINING(3), CURLMOPT_PIPELINING_SERVER_BL(3), libcurl 7.54.0 February 03, 2016 CURLMOPT_PIPELINING_SITE_BL(3)

Check Out this Related Man Page

CURLMOPT_MAX_PIPELINE_LENGTH(3) 			     curl_multi_setopt options				   CURLMOPT_MAX_PIPELINE_LENGTH(3)

NAME
CURLMOPT_MAX_PIPELINE_LENGTH - maximum number of requests in a pipeline SYNOPSIS
#include <curl/curl.h> CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_MAX_PIPELINE_LENGTH, long max); DESCRIPTION
Pass a long. The set max number will be used as the maximum amount of outstanding requests in an HTTP/1.1 pipelined connection. This option is only used for HTTP/1.1 pipelining, not for HTTP/2 multiplexing. When this limit is reached, libcurl will use another connection to the same host (see CURLMOPT_MAX_HOST_CONNECTIONS(3)), or queue the request until one of the pipelines to the host is ready to accept a request. Thus, the total number of requests in-flight is CURL- MOPT_MAX_HOST_CONNECTIONS(3) * CURLMOPT_MAX_PIPELINE_LENGTH(3). DEFAULT
5 PROTOCOLS
HTTP(S) EXAMPLE
TODO AVAILABILITY
Added in 7.30.0 RETURN VALUE
Returns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION if not. SEE ALSO
CURLMOPT_PIPELINING(3), CURLMOPT_MAX_HOST_CONNECTIONS(3), libcurl 7.54.0 October 27, 2016 CURLMOPT_MAX_PIPELINE_LENGTH(3)
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

www.caldera.com

what happened with www.caldera.com or www.sco.com? i cant access the sites 10 days now. I try from my home pc, from internet cafe,from my work. Can you access these sites? I live in Greece. (2 Replies)
Discussion started by: kalco
2 Replies

2. UNIX for Advanced & Expert Users

Good sites to learn EMC symmetrix

i need to learn this very quick. i'm not trying delve deep into it. just enough to do basic things. does anyone know of any good sites to visit?? (1 Reply)
Discussion started by: TRUEST
1 Replies

3. HP-UX

RMB supported?

Hi, I would like to know if there are any particular sites I can go to in order to findout what programs are supported in UNix OS version 11i. PArticularly if Hp Basic is supported in this new Unix version 11i. Thank you very much. (1 Reply)
Discussion started by: huhuloa
1 Replies

4. Shell Programming and Scripting

Creating Report file with 'vlookup' kind of structure in shell

Hi, I have some files in the following structure. File_a.txt Field_1 Pass Field_2 Pass Field_3 Pass File_b.txt Field_1 Pass Field_2 Fail Field_3 Pass File_c.txt Field_1 Fail Field_2 Pass Field_3 Pass (2 Replies)
Discussion started by: vikaskm
2 Replies

5. Shell Programming and Scripting

Awk printing help

Hallo, i have a file which looks like this: $1 $2 $3 Student1 55 Pass 55 Pass 35 Fail Student2 55 Pass 55 Pass 35 Fail i want that the $1 field... (3 Replies)
Discussion started by: saint2006
3 Replies

6. What is on Your Mind?

Great Dive on the HTMS Khram Shipwreck, November 24, 2011

One of my favorite dive sites.... tLlFGndtD7U (0 Replies)
Discussion started by: Neo
0 Replies

7. Shell Programming and Scripting

Search string at a particular position in a file

Hi, i have a text file as : abc 0 1 Pass hjk 1 1 Pass bhk 0 0 Fail jjh 8 2 Pass nkji 0 1 Pass Now I want to check that if 1st column is jjh , then , store the value of 3rd string of that line in a variable. Hence, 2... (8 Replies)
Discussion started by: Anamika08
8 Replies

8. Shell Programming and Scripting

How to synchronise a file to 2 different hosts?

Hello, We ve got 2 sites (Site1, Site2), joined thanks vpn. We had 2 differents files with a list of all host in each sites. Server1 has list1.ini, and Server2 has list2.ini everyone from Site1 update list1.ini by ssh or script to Server1 everyone from Site2 update list2.ini by ssh or... (1 Reply)
Discussion started by: cterra
1 Replies