From d3aff0abd81b60146cd3fe6aaf2f87bc9dc1c48e Mon Sep 17 00:00:00 2001 From: klzgrad Date: Thu, 25 Jan 2018 00:11:23 -0500 Subject: [PATCH] socket: Allow higher limits for proxies As an intermediary proxy we should not enforce stricter connection limits in addition to what the user is already enforcing. --- src/net/socket/client_socket_pool_manager.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/net/socket/client_socket_pool_manager.cc b/src/net/socket/client_socket_pool_manager.cc index 4db245c520..1bdd31a667 100644 --- a/src/net/socket/client_socket_pool_manager.cc +++ b/src/net/socket/client_socket_pool_manager.cc @@ -174,7 +174,6 @@ void ClientSocketPoolManager::set_max_sockets_per_pool( HttpNetworkSession::SocketPoolType pool_type, int socket_count) { DCHECK_LT(0, socket_count); - DCHECK_GT(1000, socket_count); // Sanity check. DCHECK_LT(pool_type, HttpNetworkSession::NUM_SOCKET_POOL_TYPES); g_max_sockets_per_pool[pool_type] = socket_count; DCHECK_GE(g_max_sockets_per_pool[pool_type], @@ -194,7 +193,6 @@ void ClientSocketPoolManager::set_max_sockets_per_group( int socket_count) { DCHECK_LT(0, socket_count); // The following is a sanity check... but we should NEVER be near this value. - DCHECK_GT(100, socket_count); DCHECK_LT(pool_type, HttpNetworkSession::NUM_SOCKET_POOL_TYPES); g_max_sockets_per_group[pool_type] = socket_count; @@ -216,7 +214,6 @@ void ClientSocketPoolManager::set_max_sockets_per_proxy_server( HttpNetworkSession::SocketPoolType pool_type, int socket_count) { DCHECK_LT(0, socket_count); - DCHECK_GT(100, socket_count); // Sanity check. DCHECK_LT(pool_type, HttpNetworkSession::NUM_SOCKET_POOL_TYPES); // Assert this case early on. The max number of sockets per group cannot // exceed the max number of sockets per proxy server.