preauth.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * wpa_supplicant - WPA2/RSN pre-authentication functions
  3. * Copyright (c) 2003-2009, 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 PREAUTH_H
  9. #define PREAUTH_H
  10. struct wpa_scan_results;
  11. #ifdef IEEE8021X_EAPOL
  12. void pmksa_candidate_free(struct wpa_sm *sm);
  13. int rsn_preauth_init(struct wpa_sm *sm, const u8 *dst,
  14. struct eap_peer_config *eap_conf);
  15. void rsn_preauth_deinit(struct wpa_sm *sm);
  16. int rsn_preauth_scan_results(struct wpa_sm *sm);
  17. void rsn_preauth_scan_result(struct wpa_sm *sm, const u8 *bssid,
  18. const u8 *ssid, const u8 *rsn);
  19. void pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid,
  20. int prio, int preauth);
  21. void rsn_preauth_candidate_process(struct wpa_sm *sm);
  22. int rsn_preauth_get_status(struct wpa_sm *sm, char *buf, size_t buflen,
  23. int verbose);
  24. int rsn_preauth_in_progress(struct wpa_sm *sm);
  25. #else /* IEEE8021X_EAPOL */
  26. static inline void pmksa_candidate_free(struct wpa_sm *sm)
  27. {
  28. }
  29. static inline void rsn_preauth_candidate_process(struct wpa_sm *sm)
  30. {
  31. }
  32. static inline int rsn_preauth_init(struct wpa_sm *sm, const u8 *dst,
  33. struct eap_peer_config *eap_conf)
  34. {
  35. return -1;
  36. }
  37. static inline void rsn_preauth_deinit(struct wpa_sm *sm)
  38. {
  39. }
  40. static inline int rsn_preauth_scan_results(struct wpa_sm *sm)
  41. {
  42. return -1;
  43. }
  44. static inline void rsn_preauth_scan_result(struct wpa_sm *sm, const u8 *bssid,
  45. const u8 *ssid, const u8 *rsn)
  46. {
  47. }
  48. static inline void pmksa_candidate_add(struct wpa_sm *sm,
  49. const u8 *bssid,
  50. int prio, int preauth)
  51. {
  52. }
  53. static inline int rsn_preauth_get_status(struct wpa_sm *sm, char *buf,
  54. size_t buflen, int verbose)
  55. {
  56. return 0;
  57. }
  58. static inline int rsn_preauth_in_progress(struct wpa_sm *sm)
  59. {
  60. return 0;
  61. }
  62. #endif /* IEEE8021X_EAPOL */
  63. #endif /* PREAUTH_H */