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

Unified Diff: net/socket/client_socket_pool_manager.cc

Issue 1052743003: Move RC4 behind a fallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/client_socket_pool_manager.cc
diff --git a/net/socket/client_socket_pool_manager.cc b/net/socket/client_socket_pool_manager.cc
index cd3633661ff92bdcb508f9777bcda43bae08fc71..b5b61fb0c1dab515db0a513e364a4a0f2439d734 100644
--- a/net/socket/client_socket_pool_manager.cc
+++ b/net/socket/client_socket_pool_manager.cc
@@ -149,6 +149,10 @@ int InitSocketPoolHelper(const GURL& request_url,
break;
}
}
+ // Place sockets with and without deprecated ciphers into separate
+ // connection groups.
+ if (ssl_config_for_origin.enable_deprecated_cipher_suites)
+ prefix += "deprecated/";
davidben 2015/04/01 22:22:59 NOTE: This, like with the fallback, means that we'
agl 2015/04/03 21:06:17 "deprecated" is a rather generic name. I'm not sur
davidben 2015/04/03 21:10:00 Done. (Went with deprecatedciphers. weakciphers im
connection_group = prefix + connection_group;
}

Powered by Google App Engine
This is Rietveld 408576698