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 No function since pipelining was removed in 7.62.0.
16
17 Pass a hosts array of char *, ending with a NULL entry. This is a list
18 of sites that are blacklisted from pipelining, i.e sites that are known
19 to not support HTTP pipelining. The array is copied by libcurl.
20
21 Pass a NULL pointer to clear the blacklist.
22
24 The default value is NULL, which means that there is no blacklist.
25
27 HTTP(S)
28
30 site_blacklist[] =
31 {
32 "www.haxx.se",
33 "www.example.com:1234",
34 NULL
35 };
36
37 curl_multi_setopt(m, CURLMOPT_PIPELINING_SITE_BL, site_blacklist);
38
40 Added in 7.30.0
41
43 Returns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION
44 if not.
45
47 CURLMOPT_PIPELINING(3), CURLMOPT_PIPELINING_SERVER_BL(3),
48
49
50
51libcurl 7.69.1 April 05, 2019 CURLMOPT_PIPELINING_SITE_BL(3)