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

Unified Diff: chrome/app/policy/policy_templates.json

Issue 7283018: Introduce a policy to control the maximal number of connections per proxy server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make the bots happy with the policy template. Created 9 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/browser_main.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/policy/policy_templates.json
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json
index 6e7e6cd4f6b78c16039113d667ad2b1210cdf3d9..ab9822695cd115bbbfd6706d155dba6026c790cd 100644
--- a/chrome/app/policy/policy_templates.json
+++ b/chrome/app/policy/policy_templates.json
@@ -94,7 +94,7 @@
# persistent IDs for all fields (but not for groups!) are needed. These are
# specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
# because doing so would break the deployed wire format!
-# For your editing convenience: highest ID currently used: 91
+# For your editing convenience: highest ID currently used: 92
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -1593,6 +1593,22 @@
'caption': '''Release channel''',
'desc': '''Specifies the release channel that this device should be locked to. This policy is a work in progress; currently, the user can still change the release channel even if it's specified by the policy.'''
},
+ {
+ 'name': 'MaxConnectionsPerProxy',
+ 'type': 'int',
+ 'supported_on': ['chrome_os:1.0-','chrome.*:14-'],
+ 'features': {'dynamic_refresh': 0},
+ 'example_value': 32,
+ 'id': 92,
+ 'caption': '''Maximal number of concurrent connections to the proxy server''',
+ 'desc': '''Specifies the maximal number of simultanious connections to the proxy server.
+
+ Some proxy servers can not handle high number of concurrent connections per client and this can be solved by setting this policy to a lower value.
+
+ The value of this policy should be lower than 100 and higher than 6 and the default value is 32.
+
+ Some web apps are known to consume many connections with hanging GETs, so lowering below 32 may lead to browser networking hangs if too many such web apps are open. Lower below the default at your own risk.''',
+ },
],
'messages': {
« no previous file with comments | « no previous file | chrome/browser/browser_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698