ie: Add ie_rsn_cipher_suite enum

Using values from Table 8-99
This commit is contained in:
Denis Kenzior 2015-01-15 17:25:25 -06:00
parent dba0549be7
commit 155a1f169a
1 changed files with 10 additions and 0 deletions

View File

@ -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;