mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-26 10:39:23 +01:00
ie: Add ie_rsn_cipher_suite enum
Using values from Table 8-99
This commit is contained in:
parent
dba0549be7
commit
155a1f169a
10
src/ie.h
10
src/ie.h
@ -154,6 +154,16 @@ enum ie_type {
|
||||
/* Reserved 222 - 255 */
|
||||
};
|
||||
|
||||
enum ie_rsn_cipher_suite {
|
||||
IE_RSN_CIPHER_SUITE_USE_GROUP_CIPHER = 0x0001,
|
||||
IE_RSN_CIPHER_SUITE_WEP40 = 0x0002,
|
||||
IE_RSN_CIPHER_SUITE_TKIP = 0x0004,
|
||||
IE_RSN_CIPHER_SUITE_CCMP = 0x0008,
|
||||
IE_RSN_CIPHER_SUITE_WEP104 = 0x0010,
|
||||
IE_RSN_CIPHER_SUITE_BIP = 0x0020,
|
||||
IE_RSN_CIPHER_SUITE_NO_GROUP_TRAFFIC = 0x0040,
|
||||
};
|
||||
|
||||
struct ie_tlv_iter {
|
||||
unsigned int max;
|
||||
unsigned int pos;
|
||||
|
Loading…
Reference in New Issue
Block a user