WebKit Bugzilla
Attachment 340654 Details for
Bug 185746
: [Curl] Enable HTTP/2 Multiplexing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185746.diff (text/plain), 1.20 KB, created by
Don Olmstead
on 2018-05-17 14:55:26 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Don Olmstead
Created:
2018-05-17 14:55:26 PDT
Size:
1.20 KB
patch
obsolete
>diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 1cbeca02f1d..45652cee410 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,15 @@ >+2018-05-17 Don Olmstead <don.olmstead@sony.com> >+ >+ [Curl] Enable HTTP/2 Multiplexing >+ https://bugs.webkit.org/show_bug.cgi?id=185746 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Covered by existing tests. >+ >+ * platform/network/curl/CurlContext.cpp: >+ (WebCore::CurlMultiHandle::CurlMultiHandle): >+ > 2018-05-17 Jer Noble <jer.noble@apple.com> > > CRASH in ImageDecoderAVFObjC::sampleAtIndex() >diff --git a/Source/WebCore/platform/network/curl/CurlContext.cpp b/Source/WebCore/platform/network/curl/CurlContext.cpp >index ef132974aeb..1639496a339 100644 >--- a/Source/WebCore/platform/network/curl/CurlContext.cpp >+++ b/Source/WebCore/platform/network/curl/CurlContext.cpp >@@ -197,6 +197,9 @@ Lock* CurlShareHandle::mutexFor(curl_lock_data data) > CurlMultiHandle::CurlMultiHandle() > { > m_multiHandle = curl_multi_init(); >+ >+ if (CurlContext::singleton().isHttp2Enabled()) >+ curl_multi_setopt(m_multiHandle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX); > } > > CurlMultiHandle::~CurlMultiHandle()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185746
: 340654