From 421f068903a396b426f3dc52cadc542ff1e03ac3 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 22 Sep 2021 11:26:50 -0700 Subject: [PATCH] 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. --- src/ie.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ie.h b/src/ie.h index 3251224e..4f8ae8f7 100644 --- a/src/ie.h +++ b/src/ie.h @@ -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];