3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-12-22 13:02:44 +01:00

ie: add info struct for OWE transition

These members are currently stored in scan_bss but with the
addition of operating class/band info this will become 5
separate members. This is a bit excessive to store in scan_bss
separately so instead this structure can hold everything related
to the OWE transition IE.
This commit is contained in:
James Prestwood 2021-09-22 11:26:50 -07:00 committed by Denis Kenzior
parent c678ba16b8
commit 421f068903

View File

@ -489,6 +489,12 @@ struct ie_fils_ip_addr_response_info {
uint8_t ipv6_lifetime; /* Zero if not provided */
};
struct ie_owe_transition_info {
uint8_t bssid[6];
uint8_t ssid[32];
size_t ssid_len;
};
extern const unsigned char ieee_oui[3];
extern const unsigned char microsoft_oui[3];
extern const unsigned char wifi_alliance_oui[3];