1CURLMOPT_PIPELINING_SITE_BL(c3u)rl_multi_setopt optiCoUnRsLMOPT_PIPELINING_SITE_BL(3)
2
3
4
6 CURLMOPT_PIPELINING_SITE_BL - pipelining host blacklist
7
9 #include <curl/curl.h>
10
11 CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_PIPELINING_SITE_BL,
12 char **hosts);
13
15 Pass a hosts array of char *, ending with a NULL entry. This is a list
16 of sites that are blacklisted from pipelining, i.e sites that are known
17 to not support HTTP pipelining. The array is copied by libcurl.
18
19 Pass a NULL pointer to clear the blacklist.
20
22 The default value is NULL, which means that there is no blacklist.
23
25 HTTP(S)
26
28 site_blacklist[] =
29 {
30 "www.haxx.se",
31 "www.example.com:1234",
32 NULL
33 };
34
35 curl_multi_setopt(m, CURLMOPT_PIPELINING_SITE_BL, site_blacklist);
36
38 Added in 7.30.0
39
41 Returns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION
42 if not.
43
45 CURLMOPT_PIPELINING(3), CURLMOPT_PIPELINING_SERVER_BL(3),
46
47
48
49libcurl 7.64.0 February 03, 2016CURLMOPT_PIPELINING_SITE_BL(3)