⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 link_test.c

📁 IEEE802.11 a/b/g 客户端应用程序源代码
💻 C
字号:
/* * Dummy functions to allow link_test to be linked. The need for these * functions should be removed to allow IEEE 802.1X/EAPOL authenticator to * be built outside hostapd. */#include "includes.h"#include "common.h"struct hostapd_data;struct sta_info;struct rsn_pmksa_cache_entry;struct eapol_state_machine;struct hostapd_eap_user;struct hostapd_bss_config;struct hostapd_vlan;struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta){	return NULL;}int ap_for_each_sta(struct hostapd_data *hapd,		    int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,			      void *ctx),		    void *ctx){	return 0;}void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,			    u32 session_timeout){}int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,		     int old_vlanid){	return 0;}void rsn_preauth_finished(struct hostapd_data *hapd, struct sta_info *sta,			  int success){}void rsn_preauth_send(struct hostapd_data *hapd, struct sta_info *sta,		      u8 *buf, size_t len){}void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta){}void pmksa_cache_to_eapol_data(struct rsn_pmksa_cache_entry *entry,			       struct eapol_state_machine *eapol){}const struct hostapd_eap_user *hostapd_get_eap_user(const struct hostapd_bss_config *conf, const u8 *identity,		     size_t identity_len, int phase2){	return NULL;}const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan, int vlan_id){	return NULL;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -