diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-09-05 11:33:51 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-05 11:34:03 +0200 |
commit | f7208df7d9d5cd5e15e2d89237e828f32b63f135 (patch) | |
tree | b729acfdd8fe43379ccf96664d43cecc1ae354fa /lib | |
parent | 61a51e0e12ed84a504a0a10be6b166a910f22ff2 (diff) | |
download | curl-f7208df7d9d5cd5e15e2d89237e828f32b63f135.tar.gz |
pipelining: deprecated
Transparently. The related curl_multi_setopt() options all still returns
OK when pipelining is selected.
To re-enable the support, the single line change in lib/multi.c needs to
be reverted.
See docs/DEPRECATE.md
Closes #2705
Diffstat (limited to 'lib')
-rw-r--r-- | lib/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c index 0caf94322..2b2ff7049 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -2705,7 +2705,7 @@ CURLMcode curl_multi_setopt(struct Curl_multi *multi, multi->push_userp = va_arg(param, void *); break; case CURLMOPT_PIPELINING: - multi->pipelining = va_arg(param, long); + multi->pipelining = va_arg(param, long) & CURLPIPE_MULTIPLEX; break; case CURLMOPT_TIMERFUNCTION: multi->timer_cb = va_arg(param, curl_multi_timer_callback); |