Changeset 283136 in webkit
- Timestamp:
- Sep 27, 2021, 2:28:19 PM (4 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r283134 r283136 1 2021-09-27 Takashi Komori <Takashi.Komori@sony.com> 2 3 [Curl] Set CURL_LOCK_DATA_SSL_SESSION option to reduce SSL/TLS handshake time 4 https://bugs.webkit.org/show_bug.cgi?id=230818 5 6 Reviewed by Fujii Hironori. 7 8 Set CURL_LOCK_DATA_SSL_SESSION option to reuse Session ID. 9 It reduces SSL/TLS handshake time. 10 11 Covered by existing tests. 12 13 * platform/network/curl/CurlContext.cpp: 14 (WebCore::CurlShareHandle::CurlShareHandle): 15 1 16 2021-09-27 Tim Nguyen <ntim@apple.com> 2 17 -
trunk/Source/WebCore/platform/network/curl/CurlContext.cpp
r282904 r283136 172 172 curl_share_setopt(m_shareHandle, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); 173 173 curl_share_setopt(m_shareHandle, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); 174 curl_share_setopt(m_shareHandle, CURLSHOPT_SHARE, CURL_LOCK_DATA_SSL_SESSION); 174 175 curl_share_setopt(m_shareHandle, CURLSHOPT_LOCKFUNC, lockCallback); 175 176 curl_share_setopt(m_shareHandle, CURLSHOPT_UNLOCKFUNC, unlockCallback);
Note:
See TracChangeset
for help on using the changeset viewer.