1#!/usr/bin/env python3 2# 3# Copyright 2020 - Google 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16 17IGNORE_IF_MISSING_ON = 'on' 18IGNORE_IF_MISSING_OFF = 'off' 19 20ADV_SEND_ADVERT_ON = 'on' 21ADV_SEND_ADVERT_OFF = 'off' 22 23UNICAST_ONLY_ON = 'on' 24UNICAST_ONLY_OFF = 'off' 25 26ADV_MANAGED_FLAG_ON = 'on' 27ADV_MANAGED_FLAG_OFF = 'off' 28 29ADV_OTHER_CONFIG_FLAG_ON = 'on' 30ADV_OTHER_CONFIG_FLAG_OFF = 'off' 31 32ADV_DEFAULT_PREFERENCE_ON = 'on' 33ADV_DEFAULT_PREFERENCE_OFF = 'off' 34 35ADV_SOURCE_LL_ADDRESS_ON = 'on' 36ADV_SOURCE_LL_ADDRESS_OFF = 'off' 37 38ADV_HOME_AGENT_FLAG_ON = 'on' 39ADV_HOME_AGENT_FLAG_OFF = 'off' 40 41ADV_HOME_AGENT_INFO_ON = 'on' 42ADV_HOME_AGENT_INFO_OFF = 'off' 43 44ADV_MOB_RTR_SUPPORT_FLAG_ON = 'on' 45ADV_MOB_RTR_SUPPORT_FLAG_OFF = 'off' 46 47ADV_INTERVAL_OPT_ON = 'on' 48ADV_INTERVAL_OPT_OFF = 'off' 49 50ADV_ON_LINK_ON = 'on' 51ADV_ON_LINK_OFF = 'off' 52 53ADV_AUTONOMOUS_ON = 'on' 54ADV_AUTONOMOUS_OFF = 'off' 55 56ADV_ROUTER_ADDR_ON = 'on' 57ADV_ROUTER_ADDR_OFF = 'off' 58 59ADV_ROUTE_PREFERENCE_LOW = 'low' 60ADV_ROUTE_PREFERENCE_MED = 'medium' 61ADV_ROUTE_PREFERENCE_HIGH = 'high' 62 63ADV_RDNSS_OPEN_ON = 'on' 64ADV_RDNSS_OPEN_OFF = 'off' 65