/* | |
* wpa_supplicant - WPA/RSN IE and KDE definitions | |
* Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi> | |
* | |
* This software may be distributed under the terms of the BSD license. | |
* See README for more details. | |
*/ | |
#ifndef WPA_IE_H | |
#define WPA_IE_H | |
struct wpa_sm; | |
int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len); | |
int wpa_gen_rsnxe(struct wpa_sm *sm, u8 *rsnxe, size_t rsnxe_len); | |
u16 rsn_supp_capab(struct wpa_sm *sm); | |
#endif /* WPA_IE_H */ |