|
@@ -124,6 +124,7 @@ int wpa_sm_rx_eapol(struct wpa_sm *sm, const u8 *src_addr,
|
|
|
int wpa_sm_parse_own_wpa_ie(struct wpa_sm *sm, struct wpa_ie_data *data);
|
|
|
int wpa_sm_pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len);
|
|
|
void wpa_sm_drop_sa(struct wpa_sm *sm);
|
|
|
+int wpa_sm_has_ptk(struct wpa_sm *sm);
|
|
|
|
|
|
#else /* CONFIG_NO_WPA */
|
|
|
|
|
@@ -323,6 +324,11 @@ wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies, size_t ies_len,
|
|
|
return -1;
|
|
|
}
|
|
|
|
|
|
+static inline int wpa_sm_has_ptk(struct wpa_sm *sm)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
#endif /* CONFIG_IEEE80211R */
|
|
|
|
|
|
#endif /* WPA_H */
|