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

Unified Diff: net/socket/ssl_client_socket_openssl.cc

Issue 10014010: net: False Start only for NPN capable servers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/socket/ssl_client_socket_openssl.cc
diff --git a/net/socket/ssl_client_socket_openssl.cc b/net/socket/ssl_client_socket_openssl.cc
index 3ee788668709d25144af1daf6c1ee2198980efca..c7ed20f8937650dcf20adaf790ab39c909e14994 100644
--- a/net/socket/ssl_client_socket_openssl.cc
+++ b/net/socket/ssl_client_socket_openssl.cc
@@ -484,13 +484,6 @@ bool SSLClientSocketOpenSSL::Init() {
// Same as above, this time for the SSL mode.
SslSetClearMask mode;
-#if defined(SSL_MODE_HANDSHAKE_CUTTHROUGH)
- mode.ConfigureFlag(SSL_MODE_HANDSHAKE_CUTTHROUGH,
- ssl_config_.false_start_enabled &&
- !SSLConfigService::IsKnownFalseStartIncompatibleServer(
- host_and_port_.host()));
-#endif
-
#if defined(SSL_MODE_RELEASE_BUFFERS)
mode.ConfigureFlag(SSL_MODE_RELEASE_BUFFERS, true);
#endif

Powered by Google App Engine
This is Rietveld 408576698