⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 285972 in webkit


Ignore:
Timestamp:
Nov 17, 2021, 7:05:08 PM (5 years ago)
Author:
Takashi.Komori@sony.com
Message:

[Curl] Remove unnecessary option setting
https://bugs.webkit.org/show_bug.cgi?id=233249

Reviewed by Fujii Hironori.

Remove setting CURLPIPE_MULTIPLEX option.
The option is enabled by default since curl 7.62.0 [1].

[1] https://curl.se/libcurl/c/curl_multi_setopt.html

No new tests, covered by existing tests.

  • platform/network/curl/CurlContext.cpp:

(WebCore::CurlMultiHandle::CurlMultiHandle):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r285967 r285972  
     12021-11-17  Takashi Komori  <Takashi.Komori@sony.com>
     2
     3        [Curl] Remove unnecessary option setting
     4        https://bugs.webkit.org/show_bug.cgi?id=233249
     5
     6        Reviewed by Fujii Hironori.
     7
     8        Remove setting CURLPIPE_MULTIPLEX option.
     9        The option is enabled by default since curl 7.62.0 [1].
     10
     11        [1] https://curl.se/libcurl/c/curl_multi_setopt.html
     12
     13        No new tests, covered by existing tests.
     14
     15        * platform/network/curl/CurlContext.cpp:
     16        (WebCore::CurlMultiHandle::CurlMultiHandle):
     17
    1182021-11-17  John Wilander  <wilander@apple.com>
    219
  • trunk/Source/WebCore/platform/network/curl/CurlContext.cpp

    r285838 r285972  
    222222{
    223223    m_multiHandle = curl_multi_init();
    224 
    225     if (CurlContext::singleton().isHttp2Enabled())
    226         curl_multi_setopt(m_multiHandle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);
    227224}
    228225
Note: See TracChangeset for help on using the changeset viewer.