diff options
author | Assaf Krauss <assaf.krauss@intel.com> | 2008-06-15 11:23:29 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-26 16:49:14 -0400 |
commit | f2df38596a81b6c24f4586b0b4befeaebf3e02db (patch) | |
tree | 3906ec28e75cb84b9644b94a8cec202c61f4f0f6 /net/mac80211/ieee80211_i.h | |
parent | b99a017c01bb19b58fd0826e36a1bdacf581c545 (diff) |
mac80211: 11h Infrastructure - Parsing
This patch introduces parsing of 11h and 11d related elements from incoming
management frames.
Signed-off-by: Assaf Krauss <assaf.krauss@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index 80a9e7c07b47..af352c05c983 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h | |||
@@ -791,6 +791,10 @@ struct ieee802_11_elems { | |||
791 | u8 *preq; | 791 | u8 *preq; |
792 | u8 *prep; | 792 | u8 *prep; |
793 | u8 *perr; | 793 | u8 *perr; |
794 | u8 *ch_switch_elem; | ||
795 | u8 *country_elem; | ||
796 | u8 *pwr_constr_elem; | ||
797 | u8 *quiet_elem; /* first quite element */ | ||
794 | 798 | ||
795 | /* length of them, respectively */ | 799 | /* length of them, respectively */ |
796 | u8 ssid_len; | 800 | u8 ssid_len; |
@@ -815,6 +819,11 @@ struct ieee802_11_elems { | |||
815 | u8 preq_len; | 819 | u8 preq_len; |
816 | u8 prep_len; | 820 | u8 prep_len; |
817 | u8 perr_len; | 821 | u8 perr_len; |
822 | u8 ch_switch_elem_len; | ||
823 | u8 country_elem_len; | ||
824 | u8 pwr_constr_elem_len; | ||
825 | u8 quiet_elem_len; | ||
826 | u8 num_of_quiet_elem; /* can be more the one */ | ||
818 | }; | 827 | }; |
819 | 828 | ||
820 | static inline struct ieee80211_local *hw_to_local( | 829 | static inline struct ieee80211_local *hw_to_local( |