1CURLMOPT_PIPELINING_SITE_BL(c3u)rl_multi_setopt optiCoUnRsLMOPT_PIPELINING_SITE_BL(3)
2
3
4
6 CURLMOPT_PIPELINING_SITE_BL - pipelining host block list
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 blocked from pipelining, i.e sites that are known to
19 not support HTTP pipelining. The array is copied by libcurl.
20
21 Pass a NULL pointer to clear the block list.
22
24 The default value is NULL, which means that there is no block list.
25
27 HTTP(S)
28
30 char *site_block_list[] =
31 {
32 "www.haxx.se",
33 "www.example.com:1234",
34 NULL
35 };
36
37 curl_multi_setopt(m, CURLMOPT_PIPELINING_SITE_BL, site_block_list);
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.85.0 May 17, 2022 CURLMOPT_PIPELINING_SITE_BL(3)