1# Copyright 2015 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# These constants are configuration keys for configuring AP service through 6# apmanager's DBus interface. These are names of DBus properties on 7# org.chromium.apmanager.Config DBus interface. 8CONFIG_BRIDGE_INTERFACE = 'BridgeInterface' 9CONFIG_CHANNEL = 'Channel' 10CONFIG_HIDDEN_NETWORK = 'HiddenNetwork' 11CONFIG_HW_MODE = 'HwMode' 12CONFIG_INTERFACE_NAME = 'InterfaceName' 13CONFIG_OPERATION_MODE = 'OperationMode' 14CONFIG_PASSPHRASE = 'Passphrase' 15CONFIG_SECURITY_MODE = 'SecurityMode' 16CONFIG_SERVER_ADDRESS_INDEX = 'ServerAddressIndex' 17CONFIG_SSID = 'Ssid' 18 19# Configuration value definitions 20OPERATION_MODE_BRIDGE = 'bridge' 21OPERATION_MODE_SERVER = 'server' 22 23# Default configuration values. 24DEFAULT_CHANNEL_NUMBER = 6 25