Changeset 285972 in webkit
- Timestamp:
- Nov 17, 2021, 7:05:08 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/network/curl/CurlContext.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r285967 r285972 1 2021-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 1 18 2021-11-17 John Wilander <wilander@apple.com> 2 19 -
trunk/Source/WebCore/platform/network/curl/CurlContext.cpp
r285838 r285972 222 222 { 223 223 m_multiHandle = curl_multi_init(); 224 225 if (CurlContext::singleton().isHttp2Enabled())226 curl_multi_setopt(m_multiHandle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);227 224 } 228 225
Note:
See TracChangeset
for help on using the changeset viewer.