aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to 'include/net')
-rw-r--r--include/net/mac80211.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 27ef9f761ac5..740c11ca066c 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -621,11 +621,14 @@ enum ieee80211_key_alg {
621 * @IEEE80211_KEY_FLAG_GENERATE_MMIC: This flag should be set by 621 * @IEEE80211_KEY_FLAG_GENERATE_MMIC: This flag should be set by
622 * the driver for a TKIP key if it requires Michael MIC 622 * the driver for a TKIP key if it requires Michael MIC
623 * generation in software. 623 * generation in software.
624 * @IEEE80211_KEY_FLAG_PAIRWISE: Set by mac80211, this flag indicates
625 * that the key is pairwise rather then a shared key.
624 */ 626 */
625enum ieee80211_key_flags { 627enum ieee80211_key_flags {
626 IEEE80211_KEY_FLAG_WMM_STA = 1<<0, 628 IEEE80211_KEY_FLAG_WMM_STA = 1<<0,
627 IEEE80211_KEY_FLAG_GENERATE_IV = 1<<1, 629 IEEE80211_KEY_FLAG_GENERATE_IV = 1<<1,
628 IEEE80211_KEY_FLAG_GENERATE_MMIC= 1<<2, 630 IEEE80211_KEY_FLAG_GENERATE_MMIC= 1<<2,
631 IEEE80211_KEY_FLAG_PAIRWISE = 1<<3,
629}; 632};
630 633
631/** 634/**