Signed-off-by: Luis R. Rodriguez <lrodriguez@xxxxxxxxxxx> --- nl80211.h | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/nl80211.h b/nl80211.h index 1cee56b..061c9a1 100644 --- a/nl80211.h +++ b/nl80211.h @@ -858,6 +858,9 @@ enum nl80211_commands { * attributes, specifying what a key should be set as default as. * See &enum nl80211_key_default_types. * + * @NL80211_ATTR_REG_COUNTRY_FLAGS: Country specific regulatory flags. + * These are @NL80211_CFLAG_DFS_* + * * @NL80211_ATTR_MAX: highest attribute number currently defined * @__NL80211_ATTR_AFTER_LAST: internal use */ @@ -1040,6 +1043,8 @@ enum nl80211_attrs { NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION, + NL80211_ATTR_REG_COUNTRY_FLAGS, + /* add attributes here, update the policy in nl80211.c */ __NL80211_ATTR_AFTER_LAST, @@ -1477,6 +1482,24 @@ enum nl80211_reg_rule_flags { }; /** + * enum nl80211_cflags - country regulatory flags + * + * @NL80211_CFLAG_DFS_FCC_: Country follows DFS master rules from FCC + * @NL80211_CFLAG_DFS_FCC_: Country follows DFS master rules from ETSI + * @NL80211_CFLAG_DFS_JP_: Country follows DFS master rules from JP/Telec + */ +enum nl80211_cflags { + NL80211_CFLAG_DFS_FCC = 1<<0, + NL80211_CFLAG_DFS_ETSI = 1<<1, + NL80211_CFLAG_DFS_JP = 1<<2, +}; + +#define NL80211_CFLAG_ALL_DFS_FLAGS \ + (NL80211_CFLAG_DFS_FCC | \ + NL80211_CFLAG_DFS_ETSI | \ + NL80211_CFLAG_DFS_JP) + +/** * enum nl80211_survey_info - survey information * * These attribute types are used with %NL80211_ATTR_SURVEY_INFO -- 1.7.3.2.90.gd4c43 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html