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; |
} |