diff options
author | Marco Porsch <marco.porsch@etit.tu-chemnitz.de> | 2012-11-21 21:40:30 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-11-26 05:35:21 -0500 |
commit | 65821635d26d3173a3b22781e2c60d5e6fcaeb22 (patch) | |
tree | 345dcc01998acaea38ed013b873f61ad6f771190 /include/linux/ieee80211.h | |
parent | 7bed20503f62ae9660c7b5cd6c3603960e422450 (diff) |
mac80211: move Mesh Capability field definition to ieee80211.h
Signed-off-by: Marco Porsch <marco.porsch@etit.tu-chemnitz.de>
[prefix with IEEE80211_]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/linux/ieee80211.h')
-rw-r--r-- | include/linux/ieee80211.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index d68790903b9e..65c6b0f3ef60 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
@@ -668,6 +668,21 @@ struct ieee80211_meshconf_ie { | |||
668 | } __attribute__ ((packed)); | 668 | } __attribute__ ((packed)); |
669 | 669 | ||
670 | /** | 670 | /** |
671 | * enum mesh_config_capab_flags - Mesh Configuration IE capability field flags | ||
672 | * | ||
673 | * @IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS: STA is willing to establish | ||
674 | * additional mesh peerings with other mesh STAs | ||
675 | * @IEEE80211_MESHCONF_CAPAB_FORWARDING: the STA forwards MSDUs | ||
676 | * @IEEE80211_MESHCONF_CAPAB_TBTT_ADJUSTING: TBTT adjustment procedure | ||
677 | * is ongoing | ||
678 | */ | ||
679 | enum mesh_config_capab_flags { | ||
680 | IEEE80211_MESHCONF_CAPAB_ACCEPT_PLINKS = 0x01, | ||
681 | IEEE80211_MESHCONF_CAPAB_FORWARDING = 0x08, | ||
682 | IEEE80211_MESHCONF_CAPAB_TBTT_ADJUSTING = 0x20, | ||
683 | }; | ||
684 | |||
685 | /** | ||
671 | * struct ieee80211_rann_ie | 686 | * struct ieee80211_rann_ie |
672 | * | 687 | * |
673 | * This structure refers to "Root Announcement information element" | 688 | * This structure refers to "Root Announcement information element" |