wpa_auth_ie.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * hostapd - 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. #ifndef WPA_AUTH_IE_H
  9. #define WPA_AUTH_IE_H
  10. struct wpa_eapol_ie_parse {
  11. const u8 *wpa_ie;
  12. size_t wpa_ie_len;
  13. const u8 *rsn_ie;
  14. size_t rsn_ie_len;
  15. const u8 *pmkid;
  16. const u8 *gtk;
  17. size_t gtk_len;
  18. const u8 *mac_addr;
  19. size_t mac_addr_len;
  20. #ifdef CONFIG_IEEE80211W
  21. const u8 *igtk;
  22. size_t igtk_len;
  23. #endif /* CONFIG_IEEE80211W */
  24. #ifdef CONFIG_IEEE80211R_AP
  25. const u8 *mdie;
  26. size_t mdie_len;
  27. const u8 *ftie;
  28. size_t ftie_len;
  29. #endif /* CONFIG_IEEE80211R_AP */
  30. #ifdef CONFIG_P2P
  31. const u8 *ip_addr_req;
  32. const u8 *ip_addr_alloc;
  33. #endif /* CONFIG_P2P */
  34. const u8 *osen;
  35. size_t osen_len;
  36. };
  37. int wpa_parse_kde_ies(const u8 *buf, size_t len,
  38. struct wpa_eapol_ie_parse *ie);
  39. u8 * wpa_add_kde(u8 *pos, u32 kde, const u8 *data, size_t data_len,
  40. const u8 *data2, size_t data2_len);
  41. int wpa_auth_gen_wpa_ie(struct wpa_authenticator *wpa_auth);
  42. #endif /* WPA_AUTH_IE_H */