1  /*
2   * wpa_supplicant - WPA/RSN IE and KDE definitions
3   * Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi>
4   *
5   * This software may be distributed under the terms of the BSD license.
6   * See README for more details.
7   */
8  
9  #ifndef WPA_IE_H
10  #define WPA_IE_H
11  
12  struct wpa_sm;
13  
14  int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len);
15  int wpa_gen_rsnxe(struct wpa_sm *sm, u8 *rsnxe, size_t rsnxe_len);
16  u16 rsn_supp_capab(struct wpa_sm *sm);
17  
18  #endif /* WPA_IE_H */
19