mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
scan: Extract WFD IE payload into struct bss
This commit is contained in:
parent
2fa3495e74
commit
75e014f72b
@ -1102,6 +1102,8 @@ static bool scan_parse_bss_information_elements(struct scan_bss *bss,
|
||||
}
|
||||
}
|
||||
|
||||
bss->wfd = ie_tlv_extract_wfd_payload(data, len, &bss->wfd_size);
|
||||
|
||||
return have_ssid;
|
||||
}
|
||||
|
||||
|
@ -82,6 +82,8 @@ struct scan_bss {
|
||||
uint8_t *rc_ie; /* Roaming consortium IE */
|
||||
uint8_t hs20_version;
|
||||
uint64_t parent_tsf;
|
||||
uint8_t *wfd; /* Concatenated WFD IEs */
|
||||
ssize_t wfd_size; /* Size of Concatenated WFD IEs */
|
||||
bool mde_present : 1;
|
||||
bool cc_present : 1;
|
||||
bool cap_rm_neighbor_report : 1;
|
||||
|
Loading…
Reference in New Issue
Block a user