18d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/*
28d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * hostapd / Station table
31f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt * Copyright (c) 2002-2011, Jouni Malinen <j@w1.fi>
48d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt *
5c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt * This software may be distributed under the terms of the BSD license.
6c5ec7f57ead87efa365800228aa0b09a12d9e6c4Dmitry Shmidt * See README for more details.
78d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt */
88d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
98d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#ifndef STA_INFO_H
108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define STA_INFO_H
118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* STA flags */
138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_AUTH BIT(0)
148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_ASSOC BIT(1)
158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_PS BIT(2)
168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_TIM BIT(3)
178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_PERM BIT(4)
188d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_AUTHORIZED BIT(5)
198d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_PENDING_POLL BIT(6) /* pending activity poll not ACKed */
208d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_SHORT_PREAMBLE BIT(7)
218d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_PREAUTH BIT(8)
228d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_WMM BIT(9)
238d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_MFP BIT(10)
248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_HT BIT(11)
258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_WPS BIT(12)
268d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_MAYBE_WPS BIT(13)
278d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_WDS BIT(14)
288d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_ASSOC_REQ_OK BIT(15)
291f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WLAN_STA_WPS2 BIT(16)
3004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#define WLAN_STA_GAS BIT(17)
3161d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt#define WLAN_STA_VHT BIT(18)
321f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WLAN_STA_PENDING_DISASSOC_CB BIT(29)
331f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt#define WLAN_STA_PENDING_DEAUTH_CB BIT(30)
348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_STA_NONERP BIT(31)
358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Maximum number of supported rates (from both Supported Rates and Extended
378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * Supported Rates IEs). */
388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define WLAN_SUPP_RATES_MAX 32
398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
408d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct sta_info {
428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct sta_info *next; /* next entry in sta list */
438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct sta_info *hnext; /* next entry in hash table list */
448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 addr[6];
458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 aid; /* STA's unique AID (1 .. 2007) or 0 if not yet assigned */
468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u32 flags; /* Bitfield of WLAN_STA_* */
478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 capability;
488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 listen_interval; /* or beacon_int for APs */
498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 supported_rates[WLAN_SUPP_RATES_MAX];
508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int supported_rates_len;
511f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	u8 qosinfo; /* Valid when WLAN_STA_WMM is set */
528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int nonerp_set:1;
548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int no_short_slot_time_set:1;
558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int no_short_preamble_set:1;
568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int no_ht_gf_set:1;
578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int no_ht_set:1;
588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int ht_20mhz_set:1;
598d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned int no_p2p_set:1;
608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u16 auth_alg;
628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 previous_ap[6];
638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	enum {
65b6e9aaf735990dc64cdb6efccc03d076768eabf3Dmitry Shmidt		STA_NULLFUNC = 0, STA_DISASSOC, STA_DEAUTH, STA_REMOVE,
66b6e9aaf735990dc64cdb6efccc03d076768eabf3Dmitry Shmidt		STA_DISASSOC_FROM_CLI
678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	} timeout_next;
688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
691f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	u16 deauth_reason;
701f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt	u16 disassoc_reason;
711f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/* IEEE 802.1X related data */
738d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct eapol_state_machine *eapol_sm;
748d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
758d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	/* IEEE 802.11f (IAPP) related data */
768d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct ieee80211_mgmt *last_assoc_req;
778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u32 acct_session_id_hi;
798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u32 acct_session_id_lo;
808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	time_t acct_session_start;
818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int acct_session_started;
828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int acct_terminate_cause; /* Acct-Terminate-Cause */
838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int acct_interim_interval; /* Acct-Interim-Interval */
848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long last_rx_bytes;
868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	unsigned long last_tx_bytes;
878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u32 acct_input_gigawords; /* Acct-Input-Gigawords */
888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u32 acct_output_gigawords; /* Acct-Output-Gigawords */
898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 *challenge; /* IEEE 802.11 Shared Key Authentication Challenge */
918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
928d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpa_state_machine *wpa_sm;
938d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct rsn_preauth_interface *preauth_iface;
948d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct hostapd_ssid *ssid; /* SSID selection based on (Re)AssocReq */
968d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct hostapd_ssid *ssid_probe; /* SSID selection based on ProbeReq */
978d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
988d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int vlan_id;
99d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt	 /* PSKs from RADIUS authentication server */
100d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt	struct hostapd_sta_wpa_psk_short *psk;
1018d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
10261d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	char *identity; /* User-Name from RADIUS */
10361d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	char *radius_cui; /* Chargeable-User-Identity from RADIUS */
10461d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt
1058d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct ieee80211_ht_capabilities *ht_capabilities;
10661d9df3e62aaa0e87ad05452fcb95142159a17b6Dmitry Shmidt	struct ieee80211_vht_capabilities *vht_capabilities;
1078d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1088d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#ifdef CONFIG_IEEE80211W
1098d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int sa_query_count; /* number of pending SA Query requests;
1108d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			     * 0 = no SA Query in progress */
1118d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	int sa_query_timed_out;
1128d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	u8 *sa_query_trans_id; /* buffer of WLAN_SA_QUERY_TR_ID_LEN *
1138d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				* sa_query_count octets of pending SA Query
1148d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt				* transaction identifiers */
1158d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct os_time sa_query_start;
1168d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#endif /* CONFIG_IEEE80211W */
1178d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
11804949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#ifdef CONFIG_INTERWORKING
11904949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#define GAS_DIALOG_MAX 8 /* Max concurrent dialog number */
12004949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	struct gas_dialog_info *gas_dialog;
12104949598a23f501be6eec21697465fd46a28840aDmitry Shmidt	u8 gas_dialog_next;
12204949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#endif /* CONFIG_INTERWORKING */
12304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt
1248d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpabuf *wps_ie; /* WPS IE from (Re)Association Request */
1258d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	struct wpabuf *p2p_ie; /* P2P IE from (Re)Association Request */
126d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt	struct wpabuf *hs20_ie; /* HS 2.0 IE from (Re)Association Request */
127d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt
128d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt	struct os_time connected_time;
129d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt
130d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt#ifdef CONFIG_SAE
131a54fa5fb807eaeff45464139b5a7759f060cec68Dmitry Shmidt	struct sae_data *sae;
132d5e4923d04122f81300fa68fb07d64ede28fd44dDmitry Shmidt#endif /* CONFIG_SAE */
1338d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt};
1348d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1358d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1368d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Default value for maximum station inactivity. After AP_MAX_INACTIVITY has
1378d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * passed since last received frame from the station, a nullfunc data frame is
1388d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * sent to the station. If this frame is not acknowledged and no other frames
1398d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * have been received, the station will be disassociated after
1401f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt * AP_DISASSOC_DELAY seconds. Similarly, the station will be deauthenticated
1418d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * after AP_DEAUTH_DELAY seconds has passed after disassociation. */
1428d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define AP_MAX_INACTIVITY (5 * 60)
1438d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define AP_DISASSOC_DELAY (1)
1448d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define AP_DEAUTH_DELAY (1)
1458d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Number of seconds to keep STA entry with Authenticated flag after it has
1468d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt * been disassociated. */
1478d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define AP_MAX_INACTIVITY_AFTER_DISASSOC (1 * 30)
1488d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt/* Number of seconds to keep STA entry after it has been deauthenticated. */
1498d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#define AP_MAX_INACTIVITY_AFTER_DEAUTH (1 * 5)
1508d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1518d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1528d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct hostapd_data;
1538d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1548d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtint ap_for_each_sta(struct hostapd_data *hapd,
1558d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		    int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
1568d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			      void *ctx),
1578d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		    void *ctx);
1588d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta);
159391c59f0632df8db1c325da1d31d479b2eedce45Dmitry Shmidtstruct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr);
1608d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta);
1618d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta);
1628d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid hostapd_free_stas(struct hostapd_data *hapd);
1638d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_handle_timer(void *eloop_ctx, void *timeout_ctx);
1648d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,
1658d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			    u32 session_timeout);
1668d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_no_session_timeout(struct hostapd_data *hapd,
1678d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			       struct sta_info *sta);
1688d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstruct sta_info * ap_sta_add(struct hostapd_data *hapd, const u8 *addr);
1698d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
1708d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			 u16 reason);
1718d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
1728d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			   u16 reason);
17304949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#ifdef CONFIG_WPS
17404949598a23f501be6eec21697465fd46a28840aDmitry Shmidtint ap_sta_wps_cancel(struct hostapd_data *hapd,
17504949598a23f501be6eec21697465fd46a28840aDmitry Shmidt		      struct sta_info *sta, void *ctx);
17604949598a23f501be6eec21697465fd46a28840aDmitry Shmidt#endif /* CONFIG_WPS */
1778d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtint ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
1788d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		     int old_vlanid);
1798d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_start_sa_query(struct hostapd_data *hapd, struct sta_info *sta);
1808d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_stop_sa_query(struct hostapd_data *hapd, struct sta_info *sta);
1818d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtint ap_check_sa_query_timeout(struct hostapd_data *hapd, struct sta_info *sta);
1828d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_disconnect(struct hostapd_data *hapd, struct sta_info *sta,
1838d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt		       const u8 *addr, u16 reason);
1848d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1858d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtvoid ap_sta_set_authorized(struct hostapd_data *hapd,
1868d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt			   struct sta_info *sta, int authorized);
1878d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidtstatic inline int ap_sta_is_authorized(struct sta_info *sta)
1888d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt{
1898d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt	return sta->flags & WLAN_STA_AUTHORIZED;
1908d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt}
1918d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt
1921f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidtvoid ap_sta_deauth_cb(struct hostapd_data *hapd, struct sta_info *sta);
1931f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidtvoid ap_sta_disassoc_cb(struct hostapd_data *hapd, struct sta_info *sta);
1941f69aa52ea2e0a73ac502565df8c666ee49cab6aDmitry Shmidt
1958d520ff1dc2da35cdca849e982051b86468016d8Dmitry Shmidt#endif /* STA_INFO_H */
196