aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorMarek Kwaczynski <marek.kwaczynski@tieto.com>2013-12-03 04:04:59 -0500
committerJohannes Berg <johannes.berg@intel.com>2013-12-03 07:46:42 -0500
commit60f4a7b1676c9028edb90e22f6994ebb698c9088 (patch)
treec0604094cb9294257d9a9d5eb51d6c9c140269c2 /include/net/cfg80211.h
parente01362265487f05b69233aab4426ab6166f7b1ec (diff)
nl80211/cfg80211: Set Operating Mode Notification
This attribute is needed for setting Operating Mode Notification in AP mode from User Space. This functionality is required when User Space received Assoc Request contains Operation Mode Notification element. Signed-off-by: Marek Kwaczynski <marek.kwaczynski@tieto.com> [fix typos, nl80211 documentation] Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index e9abc7b536cd..47290a4059ae 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -747,6 +747,8 @@ enum station_parameters_apply_mask {
747 * @supported_channels_len: number of supported channels 747 * @supported_channels_len: number of supported channels
748 * @supported_oper_classes: supported oper classes in IEEE 802.11 format 748 * @supported_oper_classes: supported oper classes in IEEE 802.11 format
749 * @supported_oper_classes_len: number of supported operating classes 749 * @supported_oper_classes_len: number of supported operating classes
750 * @opmode_notif: operating mode field from Operating Mode Notification
751 * @opmode_notif_used: information if operating mode field is used
750 */ 752 */
751struct station_parameters { 753struct station_parameters {
752 const u8 *supported_rates; 754 const u8 *supported_rates;
@@ -770,6 +772,8 @@ struct station_parameters {
770 u8 supported_channels_len; 772 u8 supported_channels_len;
771 const u8 *supported_oper_classes; 773 const u8 *supported_oper_classes;
772 u8 supported_oper_classes_len; 774 u8 supported_oper_classes_len;
775 u8 opmode_notif;
776 bool opmode_notif_used;
773}; 777};
774 778
775/** 779/**