diff options
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 61f1f37a9e27..00a50a38c7f2 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -686,12 +686,16 @@ enum ieee80211_key_len { | |||
686 | * generation in software. | 686 | * generation in software. |
687 | * @IEEE80211_KEY_FLAG_PAIRWISE: Set by mac80211, this flag indicates | 687 | * @IEEE80211_KEY_FLAG_PAIRWISE: Set by mac80211, this flag indicates |
688 | * that the key is pairwise rather then a shared key. | 688 | * that the key is pairwise rather then a shared key. |
689 | * @IEEE80211_KEY_FLAG_SW_MGMT: This flag should be set by the driver for a | ||
690 | * CCMP key if it requires CCMP encryption of management frames (MFP) to | ||
691 | * be done in software. | ||
689 | */ | 692 | */ |
690 | enum ieee80211_key_flags { | 693 | enum ieee80211_key_flags { |
691 | IEEE80211_KEY_FLAG_WMM_STA = 1<<0, | 694 | IEEE80211_KEY_FLAG_WMM_STA = 1<<0, |
692 | IEEE80211_KEY_FLAG_GENERATE_IV = 1<<1, | 695 | IEEE80211_KEY_FLAG_GENERATE_IV = 1<<1, |
693 | IEEE80211_KEY_FLAG_GENERATE_MMIC= 1<<2, | 696 | IEEE80211_KEY_FLAG_GENERATE_MMIC= 1<<2, |
694 | IEEE80211_KEY_FLAG_PAIRWISE = 1<<3, | 697 | IEEE80211_KEY_FLAG_PAIRWISE = 1<<3, |
698 | IEEE80211_KEY_FLAG_SW_MGMT = 1<<4, | ||
695 | }; | 699 | }; |
696 | 700 | ||
697 | /** | 701 | /** |