Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(529)

Issue 7058049: Added client-side support for the TLS cached info extension. This feature is disabled by default ... (Closed)

Created:
9 years, 6 months ago by rkn
Modified:
9 years, 6 months ago
CC:
chromium-reviews, jamiewalch+watch_chromium.org, hclam+watch_chromium.org, cbentzel+watch_chromium.org, simonmorris+watch_chromium.org, wez+watch_chromium.org, Paweł Hajdan Jr., dmaclach+watch_chromium.org, garykac+watch_chromium.org, lambroslambrou+watch_chromium.org, darin-cc_chromium.org, ajwong+watch_chromium.org, brettw-cc_chromium.org, sergeyu+watch_chromium.org
Visibility:
Public.

Description

Added client-side support for the TLS cached info extension. This feature is disabled by default and enabled by the flag --enable-cached-info. BUG=84920 TEST=None Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=90066

Patch Set 1 #

Patch Set 2 : Fixed some whitespace issues #

Patch Set 3 : Added Null pointer check #

Total comments: 18

Patch Set 4 : '' #

Patch Set 5 : '' #

Patch Set 6 : '' #

Total comments: 26

Patch Set 7 : '' #

Total comments: 12

Patch Set 8 : '' #

Patch Set 9 : '' #

Patch Set 10 : '' #

Patch Set 11 : '' #

Patch Set 12 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+517 lines, -77 lines) Patch
M chrome/browser/browser_main.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -3 lines 0 comments Download
M chrome/common/chrome_switches.h View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M chrome/common/chrome_switches.cc View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -2 lines 0 comments Download
M net/base/ssl_config_service.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +6 lines, -0 lines 0 comments Download
M net/base/ssl_config_service.cc View 1 2 3 4 5 6 7 8 9 10 11 4 chunks +13 lines, -1 line 0 comments Download
M net/socket/ssl_client_socket_nss.h View 1 2 3 4 5 6 7 8 9 2 chunks +3 lines, -0 lines 0 comments Download
M net/socket/ssl_client_socket_nss.cc View 1 2 3 4 5 6 7 8 9 5 chunks +72 lines, -4 lines 0 comments Download
M net/socket/ssl_server_socket_unittest.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M net/third_party/nss/ssl.gyp View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
A net/third_party/nss/ssl/fnv1a64.c View 1 2 3 4 5 1 chunk +72 lines, -0 lines 0 comments Download
M net/third_party/nss/ssl/ssl.h View 1 2 3 4 5 6 7 8 9 2 chunks +13 lines, -0 lines 0 comments Download
M net/third_party/nss/ssl/ssl3con.c View 1 2 3 4 5 6 7 8 9 5 chunks +122 lines, -65 lines 0 comments Download
M net/third_party/nss/ssl/ssl3ext.c View 1 2 3 4 5 6 7 8 9 3 chunks +152 lines, -0 lines 0 comments Download
M net/third_party/nss/ssl/sslauth.c View 1 2 3 4 5 6 7 8 9 1 chunk +25 lines, -0 lines 0 comments Download
M net/third_party/nss/ssl/sslimpl.h View 1 2 3 4 5 6 7 8 9 5 chunks +18 lines, -0 lines 0 comments Download
M net/third_party/nss/ssl/sslsock.c View 1 2 3 4 5 6 7 8 9 5 chunks +11 lines, -0 lines 0 comments Download
M net/third_party/nss/ssl/sslt.h View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -1 line 0 comments Download
M remoting/protocol/jingle_session.cc View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
rkn
9 years, 6 months ago (2011-06-03 18:58:12 UTC) #1
wtc
Thank you for the patch. I have some preliminary comments below. I will check the ...
9 years, 6 months ago (2011-06-03 22:56:55 UTC) #2
rkn
http://codereview.chromium.org/7058049/diff/1021/chrome/common/chrome_switches.cc File chrome/common/chrome_switches.cc (right): http://codereview.chromium.org/7058049/diff/1021/chrome/common/chrome_switches.cc#newcode378 chrome/common/chrome_switches.cc:378: // Enables TLS cached info extension On 2011/06/03 22:56:55, ...
9 years, 6 months ago (2011-06-04 20:50:19 UTC) #3
rkn
http://codereview.chromium.org/7058049/diff/1021/net/third_party/nss/ssl/ssl3con.c File net/third_party/nss/ssl/ssl3con.c (right): http://codereview.chromium.org/7058049/diff/1021/net/third_party/nss/ssl/ssl3con.c#newcode8226 net/third_party/nss/ssl/ssl3con.c:8226: ss->ssl3.hs.rehandshake = PR_TRUE; On 2011/06/03 22:56:55, wtc wrote: > ...
9 years, 6 months ago (2011-06-04 20:52:30 UTC) #4
wtc
LGTM. I found a bug below, marked with "BUG". Please upload a new patch set ...
9 years, 6 months ago (2011-06-17 22:57:09 UTC) #5
rkn
http://codereview.chromium.org/7058049/diff/8001/chrome/browser/browser_main.cc File chrome/browser/browser_main.cc (right): http://codereview.chromium.org/7058049/diff/8001/chrome/browser/browser_main.cc#newcode238 chrome/browser/browser_main.cc:238: // net::SSLConfigService::EnableSnapStart(); On 2011/06/17 22:57:09, wtc wrote: > Please ...
9 years, 6 months ago (2011-06-20 21:21:09 UTC) #6
wtc
LGTM. You can make the last two changes below in a new CL. But please ...
9 years, 6 months ago (2011-06-20 22:21:51 UTC) #7
rkn
http://codereview.chromium.org/7058049/diff/18001/chrome/common/chrome_switches.h File chrome/common/chrome_switches.h (right): http://codereview.chromium.org/7058049/diff/18001/chrome/common/chrome_switches.h#newcode111 chrome/common/chrome_switches.h:111: extern const char kEnableSSLCachedInfo[]; On 2011/06/20 22:21:51, wtc wrote: ...
9 years, 6 months ago (2011-06-20 23:52:50 UTC) #8
commit-bot: I haz the power
Can't apply patch for file net/base/ssl_config_service.cc. While running patch -p0 --forward --force; patching file net/base/ssl_config_service.cc ...
9 years, 6 months ago (2011-06-21 21:05:45 UTC) #9
commit-bot: I haz the power
9 years, 6 months ago (2011-06-22 19:24:40 UTC) #10
Change committed as 90066

Powered by Google App Engine
This is Rietveld 408576698