diff options
author | pastarmovj@chromium.org <pastarmovj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-11 09:35:45 +0000 |
---|---|---|
committer | pastarmovj@chromium.org <pastarmovj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-11 09:35:45 +0000 |
commit | 12c84e28a1eee00b8f2bb60c10395e9bf6007241 (patch) | |
tree | 4532fb4d65a980b155873c9ac35488eef53d16be /chrome/app | |
parent | fbf45bc40900fb2be79e5938831ffd0f5f4c7514 (diff) | |
download | chromium_src-12c84e28a1eee00b8f2bb60c10395e9bf6007241.zip chromium_src-12c84e28a1eee00b8f2bb60c10395e9bf6007241.tar.gz chromium_src-12c84e28a1eee00b8f2bb60c10395e9bf6007241.tar.bz2 |
Introduce a policy to control the maximal number of connections per proxy server.
BUG=63658
TEST=All policy unit_tests should pass.
Review URL: http://codereview.chromium.org/7326017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91998 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/policy/policy_templates.json | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json index 6e7e6cd..ab98226 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': { |