1CFG80211_FIND_IE(9) Scanning and BSS list handling CFG80211_FIND_IE(9)
2
3
4
6 cfg80211_find_ie - find information element in data
7
9 const u8 * cfg80211_find_ie(u8 eid, const u8 * ies, int len);
10
12 eid
13 element ID
14
15 ies
16 data consisting of IEs
17
18 len
19 length of data
20
22 NULL if the element ID could not be found or if the element is invalid
23 (claims to be longer than the given data), or a pointer to the first
24 byte of the requested element, that is the byte containing the element
25 ID.
26
28 There are no checks on the element length other than having to fit into
29 the given data.
30
32 Johannes Berg <johannes@sipsolutions.net>
33 Author.
34
36Kernel Hackers Manual 3.10 June 2019 CFG80211_FIND_IE(9)