|
wpa_supplicant / hostapd 2.0
|
hostapd / Station table More...
#include "utils/includes.h"#include "utils/common.h"#include "utils/eloop.h"#include "common/ieee802_11_defs.h"#include "common/wpa_ctrl.h"#include "radius/radius.h"#include "radius/radius_client.h"#include "drivers/driver.h"#include "p2p/p2p.h"#include "hostapd.h"#include "accounting.h"#include "ieee802_1x.h"#include "ieee802_11.h"#include "wpa_auth.h"#include "preauth_auth.h"#include "ap_config.h"#include "beacon.h"#include "ap_mlme.h"#include "vlan_init.h"#include "p2p_hostapd.h"#include "ap_drv_ops.h"#include "gas_serv.h"#include "sta_info.h"Functions | |
| int | ap_for_each_sta (struct hostapd_data *hapd, int(*cb)(struct hostapd_data *hapd, struct sta_info *sta, void *ctx), void *ctx) |
| struct sta_info * | ap_get_sta (struct hostapd_data *hapd, const u8 *sta) |
| void | ap_sta_hash_add (struct hostapd_data *hapd, struct sta_info *sta) |
| void | ap_free_sta (struct hostapd_data *hapd, struct sta_info *sta) |
| void | hostapd_free_stas (struct hostapd_data *hapd) |
| void | ap_handle_timer (void *eloop_ctx, void *timeout_ctx) |
| Per STA timer handler. | |
| void | ap_sta_session_timeout (struct hostapd_data *hapd, struct sta_info *sta, u32 session_timeout) |
| void | ap_sta_no_session_timeout (struct hostapd_data *hapd, struct sta_info *sta) |
| struct sta_info * | ap_sta_add (struct hostapd_data *hapd, const u8 *addr) |
| void | ap_sta_disassociate (struct hostapd_data *hapd, struct sta_info *sta, u16 reason) |
| void | ap_sta_deauthenticate (struct hostapd_data *hapd, struct sta_info *sta, u16 reason) |
| int | ap_sta_bind_vlan (struct hostapd_data *hapd, struct sta_info *sta, int old_vlanid) |
| void | ap_sta_set_authorized (struct hostapd_data *hapd, struct sta_info *sta, int authorized) |
| void | ap_sta_disconnect (struct hostapd_data *hapd, struct sta_info *sta, const u8 *addr, u16 reason) |
| void | ap_sta_deauth_cb (struct hostapd_data *hapd, struct sta_info *sta) |
| void | ap_sta_disassoc_cb (struct hostapd_data *hapd, struct sta_info *sta) |
hostapd / Station table
This software may be distributed under the terms of the BSD license. See README for more details.
| void ap_handle_timer | ( | void * | eloop_ctx, |
| void * | timeout_ctx | ||
| ) |
Per STA timer handler.
| eloop_ctx | struct hostapd_data * |
| timeout_ctx | struct sta_info * |
This function is called to check station activity and to remove inactive stations.
1.7.3