实例介绍
linux下wifi模块驱动,rtl8188EUS模块,附件驱动可以将wifi模块设为AP matstr模式
【实例截图】
【核心代码】
4744302543377007805.zip
└── RTL8188EUS
├── driver
│ └── rtl8188EUS_linux_v4.3.0.6_12167.20140828
│ ├── autoconf_rtl8188e_usb_linux.h
│ ├── clean
│ ├── core
│ │ ├── efuse
│ │ │ └── rtw_efuse.c
│ │ ├── rtw_ap.c
│ │ ├── rtw_beamforming.c
│ │ ├── rtw_br_ext.c
│ │ ├── rtw_btcoex.c
│ │ ├── rtw_bt_mp.c
│ │ ├── rtw_cmd.c
│ │ ├── rtw_debug.c
│ │ ├── rtw_eeprom.c
│ │ ├── rtw_ieee80211.c
│ │ ├── rtw_io.c
│ │ ├── rtw_ioctl_query.c
│ │ ├── rtw_ioctl_rtl.c
│ │ ├── rtw_ioctl_set.c
│ │ ├── rtw_iol.c
│ │ ├── rtw_mlme.c
│ │ ├── rtw_mlme_ext.c
│ │ ├── rtw_mp.c
│ │ ├── rtw_mp_ioctl.c
│ │ ├── rtw_odm.c
│ │ ├── rtw_p2p.c
│ │ ├── rtw_pwrctrl.c
│ │ ├── rtw_recv.c
│ │ ├── rtw_rf.c
│ │ ├── rtw_security.c
│ │ ├── rtw_sreset.c
│ │ ├── rtw_sta_mgt.c
│ │ ├── rtw_tdls.c
│ │ ├── rtw_vht.c
│ │ ├── rtw_wapi.c
│ │ ├── rtw_wapi_sms4.c
│ │ ├── rtw_wlan_util.c
│ │ └── rtw_xmit.c
│ ├── hal
│ │ ├── hal_btcoex.c
│ │ ├── hal_com.c
│ │ ├── hal_com_phycfg.c
│ │ ├── hal_hci
│ │ │ └── hal_usb.c
│ │ ├── hal_intf.c
│ │ ├── hal_phy.c
│ │ ├── HalPwrSeqCmd.c
│ │ ├── led
│ │ │ └── hal_usb_led.c
│ │ ├── OUTSRC
│ │ │ ├── HalPhyRf.c
│ │ │ ├── HalPhyRf.h
│ │ │ ├── odm_AntDiv.c
│ │ │ ├── odm_AntDiv.h
│ │ │ ├── odm.c
│ │ │ ├── odm_debug.c
│ │ │ ├── odm_debug.h
│ │ │ ├── odm.h
│ │ │ ├── odm_HWConfig.c
│ │ │ ├── odm_HWConfig.h
│ │ │ ├── odm_interface.c
│ │ │ ├── odm_interface.h
│ │ │ ├── odm_precomp.h
│ │ │ ├── odm_RegDefine11AC.h
│ │ │ ├── odm_RegDefine11N.h
│ │ │ ├── odm_reg.h
│ │ │ ├── odm_types.h
│ │ │ └── rtl8188e
│ │ │ ├── Hal8188ERateAdaptive.c
│ │ │ ├── Hal8188ERateAdaptive.h
│ │ │ ├── Hal8188EReg.h
│ │ │ ├── HalHWImg8188E_BB.c
│ │ │ ├── HalHWImg8188E_BB.h
│ │ │ ├── HalHWImg8188E_FW.c
│ │ │ ├── HalHWImg8188E_FW.h
│ │ │ ├── HalHWImg8188E_MAC.c
│ │ │ ├── HalHWImg8188E_MAC.h
│ │ │ ├── HalHWImg8188E_RF.c
│ │ │ ├── HalHWImg8188E_RF.h
│ │ │ ├── HalPhyRf_8188e.c
│ │ │ ├── HalPhyRf_8188e.h
│ │ │ ├── odm_RegConfig8188E.c
│ │ │ ├── odm_RegConfig8188E.h
│ │ │ ├── odm_RTL8188E.c
│ │ │ └── odm_RTL8188E.h
│ │ ├── OUTSRC-BTCoexist
│ │ │ ├── HalBtc8188c2Ant.c
│ │ │ ├── HalBtc8188c2Ant.h
│ │ │ ├── HalBtc8192d2Ant.c
│ │ │ ├── HalBtc8192d2Ant.h
│ │ │ ├── HalBtc8192e1Ant.c
│ │ │ ├── HalBtc8192e1Ant.h
│ │ │ ├── HalBtc8192e2Ant.c
│ │ │ ├── HalBtc8192e2Ant.h
│ │ │ ├── HalBtc8723a1Ant.c
│ │ │ ├── HalBtc8723a1Ant.h
│ │ │ ├── HalBtc8723a2Ant.c
│ │ │ ├── HalBtc8723a2Ant.h
│ │ │ ├── HalBtc8723b1Ant.c
│ │ │ ├── HalBtc8723b1Ant.h
│ │ │ ├── HalBtc8723b2Ant.c
│ │ │ ├── HalBtc8723b2Ant.h
│ │ │ ├── HalBtc8812a1Ant.c
│ │ │ ├── HalBtc8812a1Ant.h
│ │ │ ├── HalBtc8812a2Ant.c
│ │ │ ├── HalBtc8812a2Ant.h
│ │ │ ├── HalBtc8821a1Ant.c
│ │ │ ├── HalBtc8821a1Ant.h
│ │ │ ├── HalBtc8821a2Ant.c
│ │ │ ├── HalBtc8821a2Ant.h
│ │ │ ├── HalBtcOutSrc.h
│ │ │ └── Mp_Precomp.h
│ │ └── rtl8188e
│ │ ├── Hal8188EPwrSeq.c
│ │ ├── rtl8188e_cmd.c
│ │ ├── rtl8188e_dm.c
│ │ ├── rtl8188e_hal_init.c
│ │ ├── rtl8188e_mp.c
│ │ ├── rtl8188e_phycfg.c
│ │ ├── rtl8188e_rf6052.c
│ │ ├── rtl8188e_rxdesc.c
│ │ ├── rtl8188e_sreset.c
│ │ ├── rtl8188e_xmit.c
│ │ └── usb
│ │ ├── rtl8188eu_led.c
│ │ ├── rtl8188eu_recv.c
│ │ ├── rtl8188eu_xmit.c
│ │ ├── usb_halinit.c
│ │ └── usb_ops_linux.c
│ ├── ifcfg-wlan0
│ ├── include
│ │ ├── autoconf.h
│ │ ├── basic_types.h
│ │ ├── byteorder
│ │ │ ├── big_endian.h
│ │ │ ├── generic.h
│ │ │ ├── little_endian.h
│ │ │ ├── swabb.h
│ │ │ └── swab.h
│ │ ├── circ_buf.h
│ │ ├── cmd_osdep.h
│ │ ├── custom_gpio.h
│ │ ├── drv_conf.h
│ │ ├── drv_types_ce.h
│ │ ├── drv_types_gspi.h
│ │ ├── drv_types.h
│ │ ├── drv_types_linux.h
│ │ ├── drv_types_pci.h
│ │ ├── drv_types_sdio.h
│ │ ├── drv_types_xp.h
│ │ ├── ethernet.h
│ │ ├── gspi_hal.h
│ │ ├── gspi_ops.h
│ │ ├── gspi_ops_linux.h
│ │ ├── gspi_osintf.h
│ │ ├── h2clbk.h
│ │ ├── Hal8188EPhyCfg.h
│ │ ├── Hal8188EPhyReg.h
│ │ ├── Hal8188EPwrSeq.h
│ │ ├── Hal8192CPhyCfg.h
│ │ ├── Hal8192CPhyReg.h
│ │ ├── Hal8192DPhyCfg.h
│ │ ├── Hal8192DPhyReg.h
│ │ ├── Hal8192EPhyCfg.h
│ │ ├── Hal8192EPhyReg.h
│ │ ├── Hal8192EPwrSeq.h
│ │ ├── Hal8723APhyCfg.h
│ │ ├── Hal8723APhyReg.h
│ │ ├── Hal8723BPhyCfg.h
│ │ ├── Hal8723BPhyReg.h
│ │ ├── Hal8723BPwrSeq.h
│ │ ├── Hal8723PwrSeq.h
│ │ ├── Hal8812PhyCfg.h
│ │ ├── Hal8812PhyReg.h
│ │ ├── Hal8812PwrSeq.h
│ │ ├── Hal8821APwrSeq.h
│ │ ├── hal_btcoex.h
│ │ ├── hal_com.h
│ │ ├── hal_com_h2c.h
│ │ ├── hal_com_led.h
│ │ ├── hal_com_phycfg.h
│ │ ├── hal_com_reg.h
│ │ ├── hal_data.h
│ │ ├── hal_intf.h
│ │ ├── hal_pg.h
│ │ ├── hal_phy.h
│ │ ├── hal_phy_reg.h
│ │ ├── HalPwrSeqCmd.h
│ │ ├── hal_sdio.h
│ │ ├── HalVerDef.h
│ │ ├── ieee80211_ext.h
│ │ ├── ieee80211.h
│ │ ├── if_ether.h
│ │ ├── ioctl_cfg80211.h
│ │ ├── ip.h
│ │ ├── linux
│ │ │ └── wireless.h
│ │ ├── mlme_osdep.h
│ │ ├── mp_custom_oid.h
│ │ ├── nic_spec.h
│ │ ├── osdep_intf.h
│ │ ├── osdep_service_bsd.h
│ │ ├── osdep_service_ce.h
│ │ ├── osdep_service.h
│ │ ├── osdep_service_linux.h
│ │ ├── osdep_service_xp.h
│ │ ├── pci_hal.h
│ │ ├── pci_ops.h
│ │ ├── pci_osintf.h
│ │ ├── recv_osdep.h
│ │ ├── rtl8188e_cmd.h
│ │ ├── rtl8188e_dm.h
│ │ ├── rtl8188e_hal.h
│ │ ├── rtl8188e_led.h
│ │ ├── rtl8188e_recv.h
│ │ ├── rtl8188e_rf.h
│ │ ├── rtl8188e_spec.h
│ │ ├── rtl8188e_sreset.h
│ │ ├── rtl8188e_xmit.h
│ │ ├── rtl8192c_cmd.h
│ │ ├── rtl8192c_dm.h
│ │ ├── rtl8192c_event.h
│ │ ├── rtl8192c_hal.h
│ │ ├── rtl8192c_led.h
│ │ ├── rtl8192c_recv.h
│ │ ├── rtl8192c_rf.h
│ │ ├── rtl8192c_spec.h
│ │ ├── rtl8192c_sreset.h
│ │ ├── rtl8192c_xmit.h
│ │ ├── rtl8192d_cmd.h
│ │ ├── rtl8192d_dm.h
│ │ ├── rtl8192d_hal.h
│ │ ├── rtl8192d_led.h
│ │ ├── rtl8192d_recv.h
│ │ ├── rtl8192d_rf.h
│ │ ├── rtl8192d_spec.h
│ │ ├── rtl8192d_xmit.h
│ │ ├── rtl8192e_cmd.h
│ │ ├── rtl8192e_dm.h
│ │ ├── rtl8192e_hal.h
│ │ ├── rtl8192e_led.h
│ │ ├── rtl8192e_recv.h
│ │ ├── rtl8192e_rf.h
│ │ ├── rtl8192e_spec.h
│ │ ├── rtl8192e_sreset.h
│ │ ├── rtl8192e_xmit.h
│ │ ├── rtl8723a_cmd.h
│ │ ├── rtl8723a_dm.h
│ │ ├── rtl8723a_hal.h
│ │ ├── rtl8723a_led.h
│ │ ├── rtl8723a_pg.h
│ │ ├── rtl8723a_recv.h
│ │ ├── rtl8723a_rf.h
│ │ ├── rtl8723a_spec.h
│ │ ├── rtl8723a_sreset.h
│ │ ├── rtl8723a_xmit.h
│ │ ├── rtl8723b_cmd.h
│ │ ├── rtl8723b_dm.h
│ │ ├── rtl8723b_hal.h
│ │ ├── rtl8723b_led.h
│ │ ├── rtl8723b_recv.h
│ │ ├── rtl8723b_rf.h
│ │ ├── rtl8723b_spec.h
│ │ ├── rtl8723b_sreset.h
│ │ ├── rtl8723b_xmit.h
│ │ ├── rtl8812a_cmd.h
│ │ ├── rtl8812a_dm.h
│ │ ├── rtl8812a_hal.h
│ │ ├── rtl8812a_led.h
│ │ ├── rtl8812a_recv.h
│ │ ├── rtl8812a_rf.h
│ │ ├── rtl8812a_spec.h
│ │ ├── rtl8812a_sreset.h
│ │ ├── rtl8812a_xmit.h
│ │ ├── rtl8821a_spec.h
│ │ ├── rtl8821a_xmit.h
│ │ ├── rtw_android.h
│ │ ├── rtw_ap.h
│ │ ├── rtw_beamforming.h
│ │ ├── rtw_br_ext.h
│ │ ├── rtw_btcoex.h
│ │ ├── rtw_bt_mp.h
│ │ ├── rtw_byteorder.h
│ │ ├── rtw_cmd.h
│ │ ├── rtw_debug.h
│ │ ├── rtw_eeprom.h
│ │ ├── rtw_efuse.h
│ │ ├── rtw_event.h
│ │ ├── rtw_ht.h
│ │ ├── rtw_ioctl.h
│ │ ├── rtw_ioctl_query.h
│ │ ├── rtw_ioctl_rtl.h
│ │ ├── rtw_ioctl_set.h
│ │ ├── rtw_io.h
│ │ ├── rtw_iol.h
│ │ ├── rtw_mlme_ext.h
│ │ ├── rtw_mlme.h
│ │ ├── rtw_mp.h
│ │ ├── rtw_mp_ioctl.h
│ │ ├── rtw_mp_phy_regdef.h
│ │ ├── rtw_odm.h
│ │ ├── rtw_p2p.h
│ │ ├── rtw_pwrctrl.h
│ │ ├── rtw_qos.h
│ │ ├── rtw_recv.h
│ │ ├── rtw_rf.h
│ │ ├── rtw_security.h
│ │ ├── rtw_sreset.h
│ │ ├── rtw_tdls.h
│ │ ├── rtw_version.h
│ │ ├── rtw_vht.h
│ │ ├── rtw_wapi.h
│ │ ├── rtw_wifi_regd.h
│ │ ├── rtw_xmit.h
│ │ ├── sdio_hal.h
│ │ ├── sdio_ops_ce.h
│ │ ├── sdio_ops.h
│ │ ├── sdio_ops_linux.h
│ │ ├── sdio_ops_xp.h
│ │ ├── sdio_osintf.h
│ │ ├── sta_info.h
│ │ ├── usb_hal.h
│ │ ├── usb_ops.h
│ │ ├── usb_ops_linux.h
│ │ ├── usb_osintf.h
│ │ ├── usb_vendor_req.h
│ │ ├── wifi.h
│ │ ├── wlan_bssdef.h
│ │ └── xmit_osdep.h
│ ├── Kconfig
│ ├── log
│ ├── Makefile
│ ├── os_dep
│ │ ├── linux
│ │ │ ├── custom_gpio_linux.c
│ │ │ ├── ioctl_cfg80211.c
│ │ │ ├── ioctl_linux.c
│ │ │ ├── mlme_linux.c
│ │ │ ├── os_intfs.c
│ │ │ ├── recv_linux.c
│ │ │ ├── rtw_android.c
│ │ │ ├── rtw_proc.c
│ │ │ ├── rtw_proc.h
│ │ │ ├── usb_intf.c
│ │ │ ├── usb_ops_linux.c
│ │ │ ├── wifi_regd.c
│ │ │ └── xmit_linux.c
│ │ └── osdep_service.c
│ ├── platform
│ │ ├── platform_ARM_SUNnI_sdio.c
│ │ ├── platform_ARM_SUNxI_sdio.c
│ │ ├── platform_ARM_SUNxI_usb.c
│ │ ├── platform_ops.c
│ │ ├── platform_ops.h
│ │ ├── platform_RTK_DMP_usb.c
│ │ └── platform_sprd_sdio.c
│ ├── runwpa
│ └── wlan0dhcp
├── LICENSE
├── README.md
└── wpa_supplicant_hostapd
├── p2p_hostapd.conf
├── rtl_hostapd_2G.conf
├── rtl_hostapd_5G.conf
├── wpa_0_8.conf
└── wpa_supplicant_hostapd-0.8_rtw_r7475.20130812
├── COPYING
├── hostapd-0.8
│ ├── COPYING
│ ├── hostapd
│ │ ├── Android.mk
│ │ ├── ChangeLog
│ │ ├── compile.sh
│ │ ├── config_file.c
│ │ ├── config_file.h
│ │ ├── ctrl_iface.c
│ │ ├── ctrl_iface.h
│ │ ├── defconfig
│ │ ├── dump_state.c
│ │ ├── dump_state.h
│ │ ├── eap_register.c
│ │ ├── eap_register.h
│ │ ├── eap_testing.txt
│ │ ├── hlr_auc_gw.c
│ │ ├── hlr_auc_gw.milenage_db
│ │ ├── hostapd.8
│ │ ├── hostapd.accept
│ │ ├── hostapd_cli.1
│ │ ├── hostapd_cli.c
│ │ ├── hostapd.conf
│ │ ├── hostapd.deny
│ │ ├── hostapd.eap_user
│ │ ├── hostapd.radius_clients
│ │ ├── hostapd.sim_db
│ │ ├── hostapd.vlan
│ │ ├── hostapd.wpa_psk
│ │ ├── logwatch
│ │ │ ├── hostapd
│ │ │ ├── hostapd.conf
│ │ │ └── README
│ │ ├── main.c
│ │ ├── Makefile
│ │ ├── nt_password_hash.c
│ │ ├── README
│ │ ├── README-WPS
│ │ └── wired.conf
│ ├── README
│ └── src
│ ├── ap
│ │ ├── accounting.c
│ │ ├── accounting.h
│ │ ├── ap_config.c
│ │ ├── ap_config.h
│ │ ├── ap_drv_ops.c
│ │ ├── ap_drv_ops.h
│ │ ├── ap_list.c
│ │ ├── ap_list.h
│ │ ├── ap_mlme.c
│ │ ├── ap_mlme.h
│ │ ├── authsrv.c
│ │ ├── authsrv.h
│ │ ├── beacon.c
│ │ ├── beacon.h
│ │ ├── ctrl_iface_ap.c
│ │ ├── ctrl_iface_ap.h
│ │ ├── drv_callbacks.c
│ │ ├── hostapd.c
│ │ ├── hostapd.h
│ │ ├── hw_features.c
│ │ ├── hw_features.h
│ │ ├── iapp.c
│ │ ├── iapp.h
│ │ ├── ieee802_11_auth.c
│ │ ├── ieee802_11_auth.h
│ │ ├── ieee802_11.c
│ │ ├── ieee802_11.h
│ │ ├── ieee802_11_ht.c
│ │ ├── ieee802_1x.c
│ │ ├── ieee802_1x.h
│ │ ├── Makefile
│ │ ├── p2p_hostapd.c
│ │ ├── p2p_hostapd.h
│ │ ├── peerkey_auth.c
│ │ ├── pmksa_cache_auth.c
│ │ ├── pmksa_cache_auth.h
│ │ ├── preauth_auth.c
│ │ ├── preauth_auth.h
│ │ ├── sta_info.c
│ │ ├── sta_info.h
│ │ ├── tkip_countermeasures.c
│ │ ├── tkip_countermeasures.h
│ │ ├── utils.c
│ │ ├── vlan_init.c
│ │ ├── vlan_init.h
│ │ ├── wmm.c
│ │ ├── wmm.h
│ │ ├── wpa_auth.c
│ │ ├── wpa_auth_ft.c
│ │ ├── wpa_auth_glue.c
│ │ ├── wpa_auth_glue.h
│ │ ├── wpa_auth.h
│ │ ├── wpa_auth_ie.c
│ │ ├── wpa_auth_ie.h
│ │ ├── wpa_auth_i.h
│ │ ├── wps_hostapd.c
│ │ └── wps_hostapd.h
│ ├── common
│ │ ├── defs.h
│ │ ├── eapol_common.h
│ │ ├── ieee802_11_common.c
│ │ ├── ieee802_11_common.h
│ │ ├── ieee802_11_defs.h
│ │ ├── Makefile
│ │ ├── privsep_commands.h
│ │ ├── version.h
│ │ ├── wpa_common.c
│ │ ├── wpa_common.h
│ │ ├── wpa_ctrl.c
│ │ └── wpa_ctrl.h
│ ├── crypto
│ │ ├── aes-cbc.c
│ │ ├── aes-ctr.c
│ │ ├── aes-eax.c
│ │ ├── aes-encblock.c
│ │ ├── aes.h
│ │ ├── aes_i.h
│ │ ├── aes-internal.c
│ │ ├── aes-internal-dec.c
│ │ ├── aes-internal-enc.c
│ │ ├── aes-omac1.c
│ │ ├── aes-unwrap.c
│ │ ├── aes-wrap.c
│ │ ├── aes_wrap.h
│ │ ├── crypto_cryptoapi.c
│ │ ├── crypto_gnutls.c
│ │ ├── crypto.h
│ │ ├── crypto_internal.c
│ │ ├── crypto_internal-cipher.c
│ │ ├── crypto_internal-modexp.c
│ │ ├── crypto_internal-rsa.c
│ │ ├── crypto_libtomcrypt.c
│ │ ├── crypto_none.c
│ │ ├── crypto_nss.c
│ │ ├── crypto_openssl.c
│ │ ├── des_i.h
│ │ ├── des-internal.c
│ │ ├── dh_group5.c
│ │ ├── dh_group5.h
│ │ ├── dh_groups.c
│ │ ├── dh_groups.h
│ │ ├── fips_prf_cryptoapi.c
│ │ ├── fips_prf_gnutls.c
│ │ ├── fips_prf_internal.c
│ │ ├── fips_prf_nss.c
│ │ ├── fips_prf_openssl.c
│ │ ├── Makefile
│ │ ├── md4-internal.c
│ │ ├── md5.c
│ │ ├── md5.h
│ │ ├── md5_i.h
│ │ ├── md5-internal.c
│ │ ├── md5-non-fips.c
│ │ ├── milenage.c
│ │ ├── milenage.h
│ │ ├── ms_funcs.c
│ │ ├── ms_funcs.h
│ │ ├── random.c
│ │ ├── random.h
│ │ ├── rc4.c
│ │ ├── sha1.c
│ │ ├── sha1.h
│ │ ├── sha1_i.h
│ │ ├── sha1-internal.c
│ │ ├── sha1-pbkdf2.c
│ │ ├── sha1-tlsprf.c
│ │ ├── sha1-tprf.c
│ │ ├── sha256.c
│ │ ├── sha256.h
│ │ ├── sha256-internal.c
│ │ ├── tls_gnutls.c
│ │ ├── tls.h
│ │ ├── tls_internal.c
│ │ ├── tls_none.c
│ │ ├── tls_nss.c
│ │ ├── tls_openssl.c
│ │ └── tls_schannel.c
│ ├── drivers
│ │ ├── Apple80211.h
│ │ ├── driver_atheros.c
│ │ ├── driver_broadcom.c
│ │ ├── driver_bsd.c
│ │ ├── driver.h
│ │ ├── driver_hostap.c
│ │ ├── driver_hostap.h
│ │ ├── driver_iphone.m
│ │ ├── driver_madwifi.c
│ │ ├── driver_ndis.c
│ │ ├── driver_ndis_.c
│ │ ├── driver_ndis.h
│ │ ├── driver_nl80211.c
│ │ ├── driver_none.c
│ │ ├── driver_osx.m
│ │ ├── driver_privsep.c
│ │ ├── driver_ralink.c
│ │ ├── driver_ralink.h
│ │ ├── driver_roboswitch.c
│ │ ├── driver_rtl.h
│ │ ├── driver_rtw.c
│ │ ├── drivers.c
│ │ ├── drivers.mak
│ │ ├── drivers.mk
│ │ ├── driver_test.c
│ │ ├── driver_wext.c
│ │ ├── driver_wext.h
│ │ ├── driver_wired.c
│ │ ├── linux_ioctl.c
│ │ ├── linux_ioctl.h
│ │ ├── Makefile
│ │ ├── MobileApple80211.c
│ │ ├── MobileApple80211.h
│ │ ├── ndis_events.c
│ │ ├── netlink.c
│ │ ├── netlink.h
│ │ ├── nl80211_copy.h
│ │ ├── priv_netlink.h
│ │ ├── rfkill.c
│ │ ├── rfkill.h
│ │ └── wireless_copy.h
│ ├── eap_common
│ │ ├── chap.c
│ │ ├── chap.h
│ │ ├── eap_common.c
│ │ ├── eap_common.h
│ │ ├── eap_defs.h
│ │ ├── eap_fast_common.c
│ │ ├── eap_fast_common.h
│ │ ├── eap_gpsk_common.c
│ │ ├── eap_gpsk_common.h
│ │ ├── eap_ikev2_common.c
│ │ ├── eap_ikev2_common.h
│ │ ├── eap_pax_common.c
│ │ ├── eap_pax_common.h
│ │ ├── eap_peap_common.c
│ │ ├── eap_peap_common.h
│ │ ├── eap_psk_common.c
│ │ ├── eap_psk_common.h
│ │ ├── eap_pwd_common.c
│ │ ├── eap_pwd_common.h
│ │ ├── eap_sake_common.c
│ │ ├── eap_sake_common.h
│ │ ├── eap_sim_common.c
│ │ ├── eap_sim_common.h
│ │ ├── eap_tlv_common.h
│ │ ├── eap_ttls.h
│ │ ├── eap_wsc_common.c
│ │ ├── eap_wsc_common.h
│ │ ├── ikev2_common.c
│ │ ├── ikev2_common.h
│ │ └── Makefile
│ ├── eapol_auth
│ │ ├── eapol_auth_dump.c
│ │ ├── eapol_auth_sm.c
│ │ ├── eapol_auth_sm.h
│ │ ├── eapol_auth_sm_i.h
│ │ └── Makefile
│ ├── eapol_supp
│ │ ├── eapol_supp_sm.c
│ │ ├── eapol_supp_sm.h
│ │ └── Makefile
│ ├── eap_peer
│ │ ├── eap_aka.c
│ │ ├── eap.c
│ │ ├── eap_config.h
│ │ ├── eap_fast.c
│ │ ├── eap_fast_pac.c
│ │ ├── eap_fast_pac.h
│ │ ├── eap_gpsk.c
│ │ ├── eap_gtc.c
│ │ ├── eap.h
│ │ ├── eap_i.h
│ │ ├── eap_ikev2.c
│ │ ├── eap_leap.c
│ │ ├── eap_md5.c
│ │ ├── eap_methods.c
│ │ ├── eap_methods.h
│ │ ├── eap_mschapv2.c
│ │ ├── eap_otp.c
│ │ ├── eap_pax.c
│ │ ├── eap_peap.c
│ │ ├── eap_psk.c
│ │ ├── eap_pwd.c
│ │ ├── eap_sake.c
│ │ ├── eap_sim.c
│ │ ├── eap_tls.c
│ │ ├── eap_tls_common.c
│ │ ├── eap_tls_common.h
│ │ ├── eap_tnc.c
│ │ ├── eap_ttls.c
│ │ ├── eap_vendor_test.c
│ │ ├── eap_wsc.c
│ │ ├── ikev2.c
│ │ ├── ikev2.h
│ │ ├── Makefile
│ │ ├── mschapv2.c
│ │ ├── mschapv2.h
│ │ ├── tncc.c
│ │ └── tncc.h
│ ├── eap_server
│ │ ├── eap.h
│ │ ├── eap_i.h
│ │ ├── eap_methods.h
│ │ ├── eap_server_aka.c
│ │ ├── eap_server.c
│ │ ├── eap_server_fast.c
│ │ ├── eap_server_gpsk.c
│ │ ├── eap_server_gtc.c
│ │ ├── eap_server_identity.c
│ │ ├── eap_server_ikev2.c
│ │ ├── eap_server_md5.c
│ │ ├── eap_server_methods.c
│ │ ├── eap_server_mschapv2.c
│ │ ├── eap_server_pax.c
│ │ ├── eap_server_peap.c
│ │ ├── eap_server_psk.c
│ │ ├── eap_server_pwd.c
│ │ ├── eap_server_sake.c
│ │ ├── eap_server_sim.c
│ │ ├── eap_server_tls.c
│ │ ├── eap_server_tls_common.c
│ │ ├── eap_server_tnc.c
│ │ ├── eap_server_ttls.c
│ │ ├── eap_server_vendor_test.c
│ │ ├── eap_server_wsc.c
│ │ ├── eap_sim_db.c
│ │ ├── eap_sim_db.h
│ │ ├── eap_tls_common.h
│ │ ├── ikev2.c
│ │ ├── ikev2.h
│ │ ├── Makefile
│ │ ├── tncs.c
│ │ └── tncs.h
│ ├── l2_packet
│ │ ├── l2_packet_freebsd.c
│ │ ├── l2_packet.h
│ │ ├── l2_packet_linux.c
│ │ ├── l2_packet_ndis.c
│ │ ├── l2_packet_none.c
│ │ ├── l2_packet_pcap.c
│ │ ├── l2_packet_privsep.c
│ │ ├── l2_packet_winpcap.c
│ │ └── Makefile
│ ├── lib.rules
│ ├── Makefile
│ ├── p2p
│ │ ├── Makefile
│ │ ├── p2p_build.c
│ │ ├── p2p.c
│ │ ├── p2p_dev_disc.c
│ │ ├── p2p_go_neg.c
│ │ ├── p2p_group.c
│ │ ├── p2p.h
│ │ ├── p2p_i.h
│ │ ├── p2p_invitation.c
│ │ ├── p2p_parse.c
│ │ ├── p2p_pd.c
│ │ ├── p2p_sd.c
│ │ └── p2p_utils.c
│ ├── radius
│ │ ├── Makefile
│ │ ├── radius.c
│ │ ├── radius_client.c
│ │ ├── radius_client.h
│ │ ├── radius.h
│ │ ├── radius_server.c
│ │ └── radius_server.h
│ ├── rsn_supp
│ │ ├── Makefile
│ │ ├── peerkey.c
│ │ ├── peerkey.h
│ │ ├── pmksa_cache.c
│ │ ├── pmksa_cache.h
│ │ ├── preauth.c
│ │ ├── preauth.h
│ │ ├── tdls.c
│ │ ├── wpa.c
│ │ ├── wpa_ft.c
│ │ ├── wpa.h
│ │ ├── wpa_ie.c
│ │ ├── wpa_ie.h
│ │ └── wpa_i.h
│ ├── tls
│ │ ├── asn1.c
│ │ ├── asn1.h
│ │ ├── bignum.c
│ │ ├── bignum.h
│ │ ├── libtommath.c
│ │ ├── Makefile
│ │ ├── pkcs1.c
│ │ ├── pkcs1.h
│ │ ├── pkcs5.c
│ │ ├── pkcs5.h
│ │ ├── pkcs8.c
│ │ ├── pkcs8.h
│ │ ├── rsa.c
│ │ ├── rsa.h
│ │ ├── tlsv1_client.c
│ │ ├── tlsv1_client.h
│ │ ├── tlsv1_client_i.h
│ │ ├── tlsv1_client_read.c
│ │ ├── tlsv1_client_write.c
│ │ ├── tlsv1_common.c
│ │ ├── tlsv1_common.h
│ │ ├── tlsv1_cred.c
│ │ ├── tlsv1_cred.h
│ │ ├── tlsv1_record.c
│ │ ├── tlsv1_record.h
│ │ ├── tlsv1_server.c
│ │ ├── tlsv1_server.h
│ │ ├── tlsv1_server_i.h
│ │ ├── tlsv1_server_read.c
│ │ ├── tlsv1_server_write.c
│ │ ├── x509v3.c
│ │ └── x509v3.h
│ ├── utils
│ │ ├── base64.c
│ │ ├── base64.h
│ │ ├── build_config.h
│ │ ├── common.c
│ │ ├── common.h
│ │ ├── edit.c
│ │ ├── edit.h
│ │ ├── edit_readline.c
│ │ ├── edit_simple.c
│ │ ├── eloop.c
│ │ ├── eloop.h
│ │ ├── eloop_none.c
│ │ ├── eloop_win.c
│ │ ├── includes.h
│ │ ├── ip_addr.c
│ │ ├── ip_addr.h
│ │ ├── list.h
│ │ ├── Makefile
│ │ ├── os.h
│ │ ├── os_internal.c
│ │ ├── os_none.c
│ │ ├── os_unix.c
│ │ ├── os_win32.c
│ │ ├── pcsc_funcs.c
│ │ ├── pcsc_funcs.h
│ │ ├── radiotap.c
│ │ ├── radiotap.h
│ │ ├── radiotap_iter.h
│ │ ├── state_machine.h
│ │ ├── trace.c
│ │ ├── trace.h
│ │ ├── uuid.c
│ │ ├── uuid.h
│ │ ├── wpabuf.c
│ │ ├── wpabuf.h
│ │ ├── wpa_debug.c
│ │ └── wpa_debug.h
│ └── wps
│ ├── http_client.c
│ ├── http_client.h
│ ├── http.h
│ ├── httpread.c
│ ├── httpread.h
│ ├── http_server.c
│ ├── http_server.h
│ ├── Makefile
│ ├── ndef.c
│ ├── upnp_xml.c
│ ├── upnp_xml.h
│ ├── wps_attr_build.c
│ ├── wps_attr_parse.c
│ ├── wps_attr_process.c
│ ├── wps.c
│ ├── wps_common.c
│ ├── wps_defs.h
│ ├── wps_dev_attr.c
│ ├── wps_dev_attr.h
│ ├── wps_enrollee.c
│ ├── wps_er.c
│ ├── wps_er.h
│ ├── wps_er_ssdp.c
│ ├── wps.h
│ ├── wps_i.h
│ ├── wps_nfc.c
│ ├── wps_nfc_pn531.c
│ ├── wps_registrar.c
│ ├── wps_ufd.c
│ ├── wps_upnp_ap.c
│ ├── wps_upnp.c
│ ├── wps_upnp_event.c
│ ├── wps_upnp.h
│ ├── wps_upnp_i.h
│ ├── wps_upnp_ssdp.c
│ ├── wps_upnp_web.c
│ └── wps_validate.c
├── README
├── src
│ ├── ap
│ │ ├── accounting.c
│ │ ├── accounting.h
│ │ ├── ap_config.c
│ │ ├── ap_config.h
│ │ ├── ap_drv_ops.c
│ │ ├── ap_drv_ops.h
│ │ ├── ap_list.c
│ │ ├── ap_list.h
│ │ ├── ap_mlme.c
│ │ ├── ap_mlme.h
│ │ ├── authsrv.c
│ │ ├── authsrv.h
│ │ ├── beacon.c
│ │ ├── beacon.h
│ │ ├── ctrl_iface_ap.c
│ │ ├── ctrl_iface_ap.h
│ │ ├── drv_callbacks.c
│ │ ├── hostapd.c
│ │ ├── hostapd.h
│ │ ├── hw_features.c
│ │ ├── hw_features.h
│ │ ├── iapp.c
│ │ ├── iapp.h
│ │ ├── ieee802_11_auth.c
│ │ ├── ieee802_11_auth.h
│ │ ├── ieee802_11.c
│ │ ├── ieee802_11.h
│ │ ├── ieee802_11_ht.c
│ │ ├── ieee802_1x.c
│ │ ├── ieee802_1x.h
│ │ ├── Makefile
│ │ ├── p2p_hostapd.c
│ │ ├── p2p_hostapd.h
│ │ ├── peerkey_auth.c
│ │ ├── pmksa_cache_auth.c
│ │ ├── pmksa_cache_auth.h
│ │ ├── preauth_auth.c
│ │ ├── preauth_auth.h
│ │ ├── sta_info.c
│ │ ├── sta_info.h
│ │ ├── tkip_countermeasures.c
│ │ ├── tkip_countermeasures.h
│ │ ├── utils.c
│ │ ├── vlan_init.c
│ │ ├── vlan_init.h
│ │ ├── wmm.c
│ │ ├── wmm.h
│ │ ├── wpa_auth.c
│ │ ├── wpa_auth_ft.c
│ │ ├── wpa_auth_glue.c
│ │ ├── wpa_auth_glue.h
│ │ ├── wpa_auth.h
│ │ ├── wpa_auth_ie.c
│ │ ├── wpa_auth_ie.h
│ │ ├── wpa_auth_i.h
│ │ ├── wps_hostapd.c
│ │ └── wps_hostapd.h
│ ├── common
│ │ ├── defs.h
│ │ ├── eapol_common.h
│ │ ├── ieee802_11_common.c
│ │ ├── ieee802_11_common.h
│ │ ├── ieee802_11_defs.h
│ │ ├── Makefile
│ │ ├── privsep_commands.h
│ │ ├── rtw_version.h
│ │ ├── version.h
│ │ ├── wpa_common.c
│ │ ├── wpa_common.h
│ │ ├── wpa_ctrl.c
│ │ └── wpa_ctrl.h
│ ├── crypto
│ │ ├── aes-cbc.c
│ │ ├── aes-ctr.c
│ │ ├── aes-eax.c
│ │ ├── aes-encblock.c
│ │ ├── aes.h
│ │ ├── aes_i.h
│ │ ├── aes-internal.c
│ │ ├── aes-internal-dec.c
│ │ ├── aes-internal-enc.c
│ │ ├── aes-omac1.c
│ │ ├── aes-unwrap.c
│ │ ├── aes-wrap.c
│ │ ├── aes_wrap.h
│ │ ├── crypto_cryptoapi.c
│ │ ├── crypto_gnutls.c
│ │ ├── crypto.h
│ │ ├── crypto_internal.c
│ │ ├── crypto_internal-cipher.c
│ │ ├── crypto_internal-modexp.c
│ │ ├── crypto_internal-rsa.c
│ │ ├── crypto_libtomcrypt.c
│ │ ├── crypto_none.c
│ │ ├── crypto_nss.c
│ │ ├── crypto_openssl.c
│ │ ├── des_i.h
│ │ ├── des-internal.c
│ │ ├── dh_group5.c
│ │ ├── dh_group5.h
│ │ ├── dh_groups.c
│ │ ├── dh_groups.h
│ │ ├── fips_prf_cryptoapi.c
│ │ ├── fips_prf_gnutls.c
│ │ ├── fips_prf_internal.c
│ │ ├── fips_prf_nss.c
│ │ ├── fips_prf_openssl.c
│ │ ├── Makefile
│ │ ├── md4-internal.c
│ │ ├── md5.c
│ │ ├── md5.h
│ │ ├── md5_i.h
│ │ ├── md5-internal.c
│ │ ├── md5-non-fips.c
│ │ ├── milenage.c
│ │ ├── milenage.h
│ │ ├── ms_funcs.c
│ │ ├── ms_funcs.h
│ │ ├── random.c
│ │ ├── random.h
│ │ ├── rc4.c
│ │ ├── sha1.c
│ │ ├── sha1.h
│ │ ├── sha1_i.h
│ │ ├── sha1-internal.c
│ │ ├── sha1-pbkdf2.c
│ │ ├── sha1-tlsprf.c
│ │ ├── sha1-tprf.c
│ │ ├── sha256.c
│ │ ├── sha256.h
│ │ ├── sha256-internal.c
│ │ ├── tls_gnutls.c
│ │ ├── tls.h
│ │ ├── tls_internal.c
│ │ ├── tls_none.c
│ │ ├── tls_nss.c
│ │ ├── tls_openssl.c
│ │ └── tls_schannel.c
│ ├── drivers
│ │ ├── Apple80211.h
│ │ ├── driver_atheros.c
│ │ ├── driver_broadcom.c
│ │ ├── driver_bsd.c
│ │ ├── driver.h
│ │ ├── driver_hostap.c
│ │ ├── driver_hostap.h
│ │ ├── driver_iphone.m
│ │ ├── driver_madwifi.c
│ │ ├── driver_ndis.c
│ │ ├── driver_ndis_.c
│ │ ├── driver_ndis.h
│ │ ├── driver_nl80211.c
│ │ ├── driver_none.c
│ │ ├── driver_osx.m
│ │ ├── driver_privsep.c
│ │ ├── driver_ralink.c
│ │ ├── driver_ralink.h
│ │ ├── driver_roboswitch.c
│ │ ├── driver_rtl.h
│ │ ├── driver_rtw.c
│ │ ├── drivers.c
│ │ ├── drivers.mak
│ │ ├── drivers.mk
│ │ ├── driver_test.c
│ │ ├── driver_wext.c
│ │ ├── driver_wext.h
│ │ ├── driver_wired.c
│ │ ├── linux_ioctl.c
│ │ ├── linux_ioctl.h
│ │ ├── Makefile
│ │ ├── MobileApple80211.c
│ │ ├── MobileApple80211.h
│ │ ├── ndis_events.c
│ │ ├── netlink.c
│ │ ├── netlink.h
│ │ ├── nl80211_copy.h
│ │ ├── priv_netlink.h
│ │ ├── rfkill.c
│ │ ├── rfkill.h
│ │ └── wireless_copy.h
│ ├── eap_common
│ │ ├── chap.c
│ │ ├── chap.h
│ │ ├── eap_common.c
│ │ ├── eap_common.h
│ │ ├── eap_defs.h
│ │ ├── eap_fast_common.c
│ │ ├── eap_fast_common.h
│ │ ├── eap_gpsk_common.c
│ │ ├── eap_gpsk_common.h
│ │ ├── eap_ikev2_common.c
│ │ ├── eap_ikev2_common.h
│ │ ├── eap_pax_common.c
│ │ ├── eap_pax_common.h
│ │ ├── eap_peap_common.c
│ │ ├── eap_peap_common.h
│ │ ├── eap_psk_common.c
│ │ ├── eap_psk_common.h
│ │ ├── eap_pwd_common.c
│ │ ├── eap_pwd_common.h
│ │ ├── eap_sake_common.c
│ │ ├── eap_sake_common.h
│ │ ├── eap_sim_common.c
│ │ ├── eap_sim_common.h
│ │ ├── eap_tlv_common.h
│ │ ├── eap_ttls.h
│ │ ├── eap_wsc_common.c
│ │ ├── eap_wsc_common.h
│ │ ├── ikev2_common.c
│ │ ├── ikev2_common.h
│ │ └── Makefile
│ ├── eapol_auth
│ │ ├── eapol_auth_dump.c
│ │ ├── eapol_auth_sm.c
│ │ ├── eapol_auth_sm.h
│ │ ├── eapol_auth_sm_i.h
│ │ └── Makefile
│ ├── eapol_supp
│ │ ├── eapol_supp_sm.c
│ │ ├── eapol_supp_sm.h
│ │ └── Makefile
│ ├── eap_peer
│ │ ├── eap_aka.c
│ │ ├── eap.c
│ │ ├── eap_config.h
│ │ ├── eap_fast.c
│ │ ├── eap_fast_pac.c
│ │ ├── eap_fast_pac.h
│ │ ├── eap_gpsk.c
│ │ ├── eap_gtc.c
│ │ ├── eap.h
│ │ ├── eap_i.h
│ │ ├── eap_ikev2.c
│ │ ├── eap_leap.c
│ │ ├── eap_md5.c
│ │ ├── eap_methods.c
│ │ ├── eap_methods.h
│ │ ├── eap_mschapv2.c
│ │ ├── eap_otp.c
│ │ ├── eap_pax.c
│ │ ├── eap_peap.c
│ │ ├── eap_psk.c
│ │ ├── eap_pwd.c
│ │ ├── eap_sake.c
│ │ ├── eap_sim.c
│ │ ├── eap_tls.c
│ │ ├── eap_tls_common.c
│ │ ├── eap_tls_common.h
│ │ ├── eap_tnc.c
│ │ ├── eap_ttls.c
│ │ ├── eap_vendor_test.c
│ │ ├── eap_wsc.c
│ │ ├── ikev2.c
│ │ ├── ikev2.h
│ │ ├── Makefile
│ │ ├── mschapv2.c
│ │ ├── mschapv2.h
│ │ ├── tncc.c
│ │ └── tncc.h
│ ├── eap_server
│ │ ├── eap.h
│ │ ├── eap_i.h
│ │ ├── eap_methods.h
│ │ ├── eap_server_aka.c
│ │ ├── eap_server.c
│ │ ├── eap_server_fast.c
│ │ ├── eap_server_gpsk.c
│ │ ├── eap_server_gtc.c
│ │ ├── eap_server_identity.c
│ │ ├── eap_server_ikev2.c
│ │ ├── eap_server_md5.c
│ │ ├── eap_server_methods.c
│ │ ├── eap_server_mschapv2.c
│ │ ├── eap_server_pax.c
│ │ ├── eap_server_peap.c
│ │ ├── eap_server_psk.c
│ │ ├── eap_server_pwd.c
│ │ ├── eap_server_sake.c
│ │ ├── eap_server_sim.c
│ │ ├── eap_server_tls.c
│ │ ├── eap_server_tls_common.c
│ │ ├── eap_server_tnc.c
│ │ ├── eap_server_ttls.c
│ │ ├── eap_server_vendor_test.c
│ │ ├── eap_server_wsc.c
│ │ ├── eap_sim_db.c
│ │ ├── eap_sim_db.h
│ │ ├── eap_tls_common.h
│ │ ├── ikev2.c
│ │ ├── ikev2.h
│ │ ├── Makefile
│ │ ├── tncs.c
│ │ └── tncs.h
│ ├── l2_packet
│ │ ├── l2_packet_freebsd.c
│ │ ├── l2_packet.h
│ │ ├── l2_packet_linux.c
│ │ ├── l2_packet_ndis.c
│ │ ├── l2_packet_none.c
│ │ ├── l2_packet_pcap.c
│ │ ├── l2_packet_privsep.c
│ │ ├── l2_packet_winpcap.c
│ │ └── Makefile
│ ├── lib.rules
│ ├── Makefile
│ ├── p2p
│ │ ├── Makefile
│ │ ├── p2p_build.c
│ │ ├── p2p.c
│ │ ├── p2p_dev_disc.c
│ │ ├── p2p_go_neg.c
│ │ ├── p2p_group.c
│ │ ├── p2p.h
│ │ ├── p2p_i.h
│ │ ├── p2p_invitation.c
│ │ ├── p2p_parse.c
│ │ ├── p2p_pd.c
│ │ ├── p2p_sd.c
│ │ └── p2p_utils.c
│ ├── radius
│ │ ├── Makefile
│ │ ├── radius.c
│ │ ├── radius_client.c
│ │ ├── radius_client.h
│ │ ├── radius.h
│ │ ├── radius_server.c
│ │ └── radius_server.h
│ ├── rsn_supp
│ │ ├── Makefile
│ │ ├── peerkey.c
│ │ ├── peerkey.h
│ │ ├── pmksa_cache.c
│ │ ├── pmksa_cache.h
│ │ ├── preauth.c
│ │ ├── preauth.h
│ │ ├── tdls.c
│ │ ├── wpa.c
│ │ ├── wpa_ft.c
│ │ ├── wpa.h
│ │ ├── wpa_ie.c
│ │ ├── wpa_ie.h
│ │ └── wpa_i.h
│ ├── tls
│ │ ├── asn1.c
│ │ ├── asn1.h
│ │ ├── bignum.c
│ │ ├── bignum.h
│ │ ├── libtommath.c
│ │ ├── Makefile
│ │ ├── pkcs1.c
│ │ ├── pkcs1.h
│ │ ├── pkcs5.c
│ │ ├── pkcs5.h
│ │ ├── pkcs8.c
│ │ ├── pkcs8.h
│ │ ├── rsa.c
│ │ ├── rsa.h
│ │ ├── tlsv1_client.c
│ │ ├── tlsv1_client.h
│ │ ├── tlsv1_client_i.h
│ │ ├── tlsv1_client_read.c
│ │ ├── tlsv1_client_write.c
│ │ ├── tlsv1_common.c
│ │ ├── tlsv1_common.h
│ │ ├── tlsv1_cred.c
│ │ ├── tlsv1_cred.h
│ │ ├── tlsv1_record.c
│ │ ├── tlsv1_record.h
│ │ ├── tlsv1_server.c
│ │ ├── tlsv1_server.h
│ │ ├── tlsv1_server_i.h
│ │ ├── tlsv1_server_read.c
│ │ ├── tlsv1_server_write.c
│ │ ├── x509v3.c
│ │ └── x509v3.h
│ ├── utils
│ │ ├── base64.c
│ │ ├── base64.h
│ │ ├── build_config.h
│ │ ├── common.c
│ │ ├── common.h
│ │ ├── edit.c
│ │ ├── edit.h
│ │ ├── edit_readline.c
│ │ ├── edit_simple.c
│ │ ├── eloop.c
│ │ ├── eloop.h
│ │ ├── eloop_none.c
│ │ ├── eloop_win.c
│ │ ├── includes.h
│ │ ├── ip_addr.c
│ │ ├── ip_addr.h
│ │ ├── list.h
│ │ ├── Makefile
│ │ ├── os.h
│ │ ├── os_internal.c
│ │ ├── os_none.c
│ │ ├── os_unix.c
│ │ ├── os_win32.c
│ │ ├── pcsc_funcs.c
│ │ ├── pcsc_funcs.h
│ │ ├── radiotap.c
│ │ ├── radiotap.h
│ │ ├── radiotap_iter.h
│ │ ├── state_machine.h
│ │ ├── trace.c
│ │ ├── trace.h
│ │ ├── uuid.c
│ │ ├── uuid.h
│ │ ├── wpabuf.c
│ │ ├── wpabuf.h
│ │ ├── wpa_debug.c
│ │ └── wpa_debug.h
│ └── wps
│ ├── http_client.c
│ ├── http_client.h
│ ├── http.h
│ ├── httpread.c
│ ├── httpread.h
│ ├── http_server.c
│ ├── http_server.h
│ ├── Makefile
│ ├── ndef.c
│ ├── upnp_xml.c
│ ├── upnp_xml.h
│ ├── wps_attr_build.c
│ ├── wps_attr_parse.c
│ ├── wps_attr_process.c
│ ├── wps.c
│ ├── wps_common.c
│ ├── wps_defs.h
│ ├── wps_dev_attr.c
│ ├── wps_dev_attr.h
│ ├── wps_enrollee.c
│ ├── wps_er.c
│ ├── wps_er.h
│ ├── wps_er_ssdp.c
│ ├── wps.h
│ ├── wps_i.h
│ ├── wps_nfc.c
│ ├── wps_nfc_pn531.c
│ ├── wps_registrar.c
│ ├── wps_ufd.c
│ ├── wps_upnp_ap.c
│ ├── wps_upnp.c
│ ├── wps_upnp_event.c
│ ├── wps_upnp.h
│ ├── wps_upnp_i.h
│ ├── wps_upnp_ssdp.c
│ ├── wps_upnp_web.c
│ └── wps_validate.c
└── wpa_supplicant
├── Android.mk
├── ap.c
├── ap.h
├── bgscan.c
├── bgscan.h
├── bgscan_learn.c
├── bgscan_simple.c
├── blacklist.c
├── blacklist.h
├── bss.c
├── bss.h
├── ChangeLog
├── config.c
├── config_file.c
├── config.h
├── config_none.c
├── config_ssid.h
├── config_winreg.c
├── ctrl_iface.c
├── ctrl_iface.h
├── ctrl_iface_named_pipe.c
├── ctrl_iface_udp.c
├── ctrl_iface_unix.c
├── dbus
│ ├── dbus_common.c
│ ├── dbus_common.h
│ ├── dbus_common_i.h
│ ├── dbus_dict_helpers.c
│ ├── dbus_dict_helpers.h
│ ├── dbus_new.c
│ ├── dbus_new.h
│ ├── dbus_new_handlers.c
│ ├── dbus_new_handlers.h
│ ├── dbus_new_handlers_wps.c
│ ├── dbus_new_helpers.c
│ ├── dbus_new_helpers.h
│ ├── dbus_new_introspect.c
│ ├── dbus_old.c
│ ├── dbus_old.h
│ ├── dbus_old_handlers.c
│ ├── dbus_old_handlers.h
│ ├── dbus_old_handlers_wps.c
│ ├── dbus-wpa_supplicant.conf
│ ├── fi.epitest.hostap.WPASupplicant.service
│ ├── fi.w1.wpa_supplicant1.service
│ └── Makefile
├── defconfig
├── driver_i.h
├── eapol_test.c
├── eap_register.c
├── eap_testing.txt
├── events.c
├── ibss_rsn.c
├── ibss_rsn.h
├── main.c
├── main_none.c
├── main_symbian.cpp
├── main_winmain.c
├── main_winsvc.c
├── Makefile
├── mlme.c
├── mlme.h
├── nmake.mak
├── notify.c
├── notify.h
├── p2p_supplicant.c
├── p2p_supplicant.h
├── pf
│ ├── wpa_supplicant.IAB
│ ├── wpa_supplicant.IAD
│ ├── wpa_supplicant.IMB
│ ├── wpa_supplicant.IMD
│ ├── wpa_supplicant.PFI
│ ├── wpa_supplicant.PO
│ ├── wpa_supplicant.PR
│ ├── wpa_supplicant.PRI
│ ├── wpa_supplicant.PS
│ ├── wpa_supplicant.SearchResults
│ └── wpa_supplicant.WK3
├── preauth_test.c
├── README
├── README-P2P
├── README-Windows.txt
├── README-WPS
├── scan.c
├── scan.h
├── sme.c
├── sme.h
├── src
├── todo.txt
├── win_example.reg
├── win_if_list.c
├── wpa_cli.c
├── wpa_passphrase.c
├── wpa_priv.c
├── wpas_glue.c
├── wpas_glue.h
├── wpa_supplicant.c
├── wpa_supplicant.conf
├── wpa_supplicant_i.h
├── wpa_supplicant.nsi
├── wps_supplicant.c
└── wps_supplicant.h
61 directories, 1358 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论