libcurl-opts: mention pipelining less

libcurl has not supported HTTP pipelining since many years. Remove a few
(more) mentions of the feature.

Closes #13254
This commit is contained in:
Daniel Stenberg 2024-04-01 09:52:23 +02:00
parent 5a50cb5a18
commit 6afac4f992
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 12 additions and 13 deletions

View file

@ -17,7 +17,7 @@ Protocol:
# NAME
CURLMOPT_PIPELINING - enable HTTP pipelining and multiplexing
CURLMOPT_PIPELINING - enable HTTP multiplexing
# SYNOPSIS
@ -29,8 +29,8 @@ CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_PIPELINING, long bitmask);
# DESCRIPTION
Pass in the correct value in the **bitmask** parameter to instruct libcurl
to enable multiplexing for this multi handle.
Pass in the correct value in the **bitmask** parameter to instruct libcurl to
enable multiplexing for this multi handle.
With multiplexing enabled, libcurl attempts to do multiple transfers over the
same connection when doing parallel transfers to the same hosts.