diff options
author | zqiu <zqiu@chromium.org> | 2014-10-06 19:16:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-07 02:16:34 +0000 |
commit | 6929e390483915c1de0697425bd35c67c05daf4c (patch) | |
tree | 18116925bdb63e04b38a47e1ea4bfe6a73b72ec0 /components/onc/onc_constants.cc | |
parent | 41a18987c3253d889091bc4c6a442fc723c7c895 (diff) | |
download | chromium_src-6929e390483915c1de0697425bd35c67c05daf4c.zip chromium_src-6929e390483915c1de0697425bd35c67c05daf4c.tar.gz chromium_src-6929e390483915c1de0697425bd35c67c05daf4c.tar.bz2 |
Allow option to disable link monitor for WiFi network
By default, link monitor is enabled for WiFi network. When it is
enabled, it will send ARP request to default gateway periodically.
This CL adds an ONC configuration option to disable the link monitor.
BUG=chromium:415367
Review URL: https://codereview.chromium.org/598173002
Cr-Commit-Position: refs/heads/master@{#298327}
Diffstat (limited to 'components/onc/onc_constants.cc')
-rw-r--r-- | components/onc/onc_constants.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/onc/onc_constants.cc b/components/onc/onc_constants.cc index c4ea339..f8798a3 100644 --- a/components/onc/onc_constants.cc +++ b/components/onc/onc_constants.cc @@ -177,6 +177,7 @@ const char kWebProxyAutoDiscoveryUrl[] = "WebProxyAutoDiscoveryUrl"; } // namespace ipconfig namespace wifi { +const char kAllowGatewayARPPolling[] = "AllowGatewayARPPolling"; const char kAutoConnect[] = "AutoConnect"; const char kBSSID[] = "BSSID"; const char kEAP[] = "EAP"; |