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

Unified Diff: net/base/ssl_config_service.h

Issue 7058049: Added client-side support for the TLS cached info extension. This feature is disabled by default ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Added Null pointer check Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/ssl_config_service.h
===================================================================
--- net/base/ssl_config_service.h (revision 86360)
+++ net/base/ssl_config_service.h (working copy)
@@ -58,6 +58,7 @@
// TODO(rsleevi): Not implemented when using Schannel.
std::vector<uint16> disabled_cipher_suites;
+ bool cached_info_enabled; // True if TLS cached info extension is enabled.
bool false_start_enabled; // True if we'll use TLS False Start.
// TODO(wtc): move the following members to a new SSLParams structure. They
@@ -139,6 +140,11 @@
static void EnableDNSSEC();
static bool dnssec_enabled();
+ // Enables the TLS cached info extension, which allows the server to send
+ // just a digest of its certificate chain
+ static void EnableCachedInfo();
+ static bool cached_info_enabled();
+
// Disables False Start in SSL connections.
static void DisableFalseStart();
// True if we use False Start for SSL and TLS.

Powered by Google App Engine
This is Rietveld 408576698