2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* wpa_supplicant - WPA/RSN IE and KDE definitions
|
|
|
|
* Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WPA_IE_H
|
|
|
|
#define WPA_IE_H
|
|
|
|
|
2010-11-09 19:29:12 +01:00
|
|
|
struct wpa_sm;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len);
|
2019-10-17 15:54:05 +02:00
|
|
|
int wpa_gen_rsnxe(struct wpa_sm *sm, u8 *rsnxe, size_t rsnxe_len);
|
2020-03-22 23:08:38 +01:00
|
|
|
u16 rsn_supp_capab(struct wpa_sm *sm);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
#endif /* WPA_IE_H */
|