wpa_ie.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. #ifndef WPA_IE_H
  9. #define WPA_IE_H
  10. struct wpa_sm;
  11. struct wpa_eapol_ie_parse {
  12. const u8 *wpa_ie;
  13. size_t wpa_ie_len;
  14. const u8 *rsn_ie;
  15. size_t rsn_ie_len;
  16. const u8 *pmkid;
  17. const u8 *gtk;
  18. size_t gtk_len;
  19. const u8 *mac_addr;
  20. size_t mac_addr_len;
  21. #ifdef CONFIG_IEEE80211W
  22. const u8 *igtk;
  23. size_t igtk_len;
  24. #endif /* CONFIG_IEEE80211W */
  25. const u8 *mdie;
  26. size_t mdie_len;
  27. const u8 *ftie;
  28. size_t ftie_len;
  29. const u8 *reassoc_deadline;
  30. const u8 *key_lifetime;
  31. const u8 *lnkid;
  32. size_t lnkid_len;
  33. const u8 *ext_capab;
  34. size_t ext_capab_len;
  35. const u8 *supp_rates;
  36. size_t supp_rates_len;
  37. const u8 *ext_supp_rates;
  38. size_t ext_supp_rates_len;
  39. const u8 *ht_capabilities;
  40. const u8 *vht_capabilities;
  41. const u8 *supp_channels;
  42. size_t supp_channels_len;
  43. const u8 *supp_oper_classes;
  44. size_t supp_oper_classes_len;
  45. u8 qosinfo;
  46. u16 aid;
  47. const u8 *wmm;
  48. size_t wmm_len;
  49. #ifdef CONFIG_P2P
  50. const u8 *ip_addr_req;
  51. const u8 *ip_addr_alloc;
  52. #endif /* CONFIG_P2P */
  53. };
  54. int wpa_supplicant_parse_ies(const u8 *buf, size_t len,
  55. struct wpa_eapol_ie_parse *ie);
  56. int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len);
  57. #endif /* WPA_IE_H */