1. NAME

cfg80211_find_ie - find information element in data

2. SYNOPSIS

const u8 * cfg80211_find_ie(u8  eid , const u8 *  ies , int  len );

3. ARGUMENTS

eid
    element ID

ies
    data consisting of IEs

len
    length of data

4. RETURN

NULL if the element ID could not be found or if the element is invalid (claims to be longer than the given data), or a pointer to the first byte of the requested element, that is the byte containing the element ID.

5. NOTE

There are no checks on the element length other than having to fit into the given data.

6. AUTHOR

Johannes Berg <>
    Author.

7. COPYRIGHT