├── .gitignore ├── AppleIntelWifiAdapter.xcodeproj └── project.pbxproj ├── AppleIntelWifiAdapter ├── AppleIntelWifiAdapterV2.cpp ├── AppleIntelWifiAdapterV2.hpp ├── HackIOEthernetInterface.h ├── HackIONetworkInterface.h ├── IWLCoex.cpp ├── IWLCtxtInfo.cpp ├── IWLCtxtInfo.hpp ├── IWLDebug.h ├── IWLDevice.cpp ├── IWLDevice.hpp ├── IWLFH.h ├── IWLInternal.cpp ├── IWLInternal.hpp ├── IWLPhyDb.cpp ├── IWLPhyDb.hpp ├── IWLUtils.cpp ├── Info.plist ├── apple80211 │ ├── IO80211Controller.h │ ├── IO80211Interface.h │ ├── IO80211SkywalkInterface.h │ ├── IO80211WorkLoop.h │ ├── IOEthernetController.h │ ├── IONetworkController.h │ ├── IOSkywalkEthernetInterface.h │ ├── apple80211_ioctl.h │ ├── apple80211_var.h │ └── apple80211_wps.h ├── compat │ ├── linux │ │ ├── bitfield.h │ │ ├── cfg80211.h │ │ ├── ieee80211.h │ │ ├── ieee80211_radiotap.h │ │ ├── kernel.h │ │ ├── mac80211.h │ │ ├── netdevice.h │ │ ├── nl80211.h │ │ ├── random.h │ │ ├── skbuff.h │ │ └── types.h │ └── openbsd │ │ ├── crypto │ │ ├── aes.c │ │ ├── aes.h │ │ ├── arc4.c │ │ ├── arc4.h │ │ ├── blf.c │ │ ├── blf.h │ │ ├── cast.c │ │ ├── cast.h │ │ ├── castsb.h │ │ ├── chacha_private.h │ │ ├── chachapoly.c │ │ ├── chachapoly.h │ │ ├── cmac.c │ │ ├── cmac.h │ │ ├── cryptodev.h │ │ ├── des_locl.h │ │ ├── ecb3_enc.c │ │ ├── ecb_enc.c │ │ ├── gmac.c │ │ ├── gmac.h │ │ ├── hmac.c │ │ ├── hmac.h │ │ ├── idgen.c │ │ ├── idgen.h │ │ ├── key_wrap.c │ │ ├── key_wrap.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── michael.c │ │ ├── michael.h │ │ ├── podd.h │ │ ├── poly1305.c │ │ ├── poly1305.h │ │ ├── rijndael.c │ │ ├── rijndael.h │ │ ├── rmd160.c │ │ ├── rmd160.h │ │ ├── set_key.c │ │ ├── sha1.c │ │ ├── sha1.h │ │ ├── sha2.c │ │ ├── sha2.h │ │ ├── sk.h │ │ └── spr.h │ │ ├── net80211 │ │ ├── CTimeout.cpp │ │ ├── _string.c │ │ ├── ieee80211.c │ │ ├── ieee80211.h │ │ ├── ieee80211_amrr.c │ │ ├── ieee80211_amrr.h │ │ ├── ieee80211_crypto.c │ │ ├── ieee80211_crypto.h │ │ ├── ieee80211_crypto_bip.c │ │ ├── ieee80211_crypto_ccmp.c │ │ ├── ieee80211_crypto_tkip.c │ │ ├── ieee80211_crypto_wep.c │ │ ├── ieee80211_input.c │ │ ├── ieee80211_ioctl.c │ │ ├── ieee80211_ioctl.h │ │ ├── ieee80211_mira.c │ │ ├── ieee80211_mira.h │ │ ├── ieee80211_node.c │ │ ├── ieee80211_node.h │ │ ├── ieee80211_output.c │ │ ├── ieee80211_pae_input.c │ │ ├── ieee80211_pae_output.c │ │ ├── ieee80211_priv.h │ │ ├── ieee80211_proto.c │ │ ├── ieee80211_proto.h │ │ ├── ieee80211_radiotap.h │ │ ├── ieee80211_regdomain.c │ │ ├── ieee80211_regdomain.h │ │ ├── ieee80211_rssadapt.c │ │ ├── ieee80211_rssadapt.h │ │ ├── ieee80211_var.h │ │ └── timeout.c │ │ └── sys │ │ ├── CTimeout.hpp │ │ ├── _arc4random.h │ │ ├── _buf.h │ │ ├── _if_ether.h │ │ ├── _if_media.h │ │ ├── _mbuf.h │ │ ├── _null.h │ │ ├── endian.h │ │ ├── timeout.h │ │ └── tree.h ├── device │ ├── IWLCSR.h │ ├── IWLDevice22000.h │ ├── IWLDevice7000.h │ ├── IWLDevice8000.h │ ├── IWLDevice9000.h │ ├── IWLDeviceBase.h │ ├── IWLDeviceList.h │ └── IWLPRPH.h ├── firmware │ ├── iwlwifi-3160-17.ucode │ ├── iwlwifi-3168-29.ucode │ ├── iwlwifi-7260-17.ucode │ ├── iwlwifi-7265-17.ucode │ ├── iwlwifi-7265D-27.ucode │ ├── iwlwifi-8000C-36.ucode │ ├── iwlwifi-8265-34.ucode │ ├── iwlwifi-8265-36.ucode │ ├── iwlwifi-9000-pu-b0-jf-b0-46.ucode │ ├── iwlwifi-9260-th-b0-jf-b0-46.ucode │ ├── iwlwifi-Qu-b0-hr-b0-48.ucode │ ├── iwlwifi-Qu-b0-jf-b0-48.ucode │ ├── iwlwifi-Qu-c0-hr-b0-48.ucode │ ├── iwlwifi-Qu-c0-jf-b0-48.ucode │ ├── iwlwifi-QuZ-a0-hr-b0-48.ucode │ ├── iwlwifi-QuZ-a0-jf-b0-48.ucode │ └── iwlwifi-cc-a0-48.ucode ├── fw │ ├── FWFile.h │ ├── FWImg.h │ ├── IWLFw.cpp │ ├── IWLUcodeParse.cpp │ ├── IWLUcodeParse.hpp │ ├── NotificationWait.cpp │ ├── NotificationWait.hpp │ ├── api │ │ ├── alive.h │ │ ├── binding.h │ │ ├── cmdhdr.h │ │ ├── coex.h │ │ ├── commands.h │ │ ├── config.h │ │ ├── context.h │ │ ├── d3.h │ │ ├── datapath.h │ │ ├── dbg-tlv.h │ │ ├── debug.h │ │ ├── filter.h │ │ ├── led.h │ │ ├── location.h │ │ ├── mac-cfg.h │ │ ├── mac.h │ │ ├── nan.h │ │ ├── nvm-reg.h │ │ ├── offload.h │ │ ├── paging.h │ │ ├── phy-ctxt.h │ │ ├── phy.h │ │ ├── power.h │ │ ├── rs.h │ │ ├── rx.h │ │ ├── scan.h │ │ ├── sf.h │ │ ├── soc.h │ │ ├── sta.h │ │ ├── stats.h │ │ ├── tdls.h │ │ ├── testing.h │ │ ├── time-event.h │ │ ├── tx.h │ │ └── txq.h │ └── fw-api.h ├── hack80211 │ ├── HackIO80211Interface.cpp │ └── HackIO80211Interface.h ├── mvm │ ├── IWLConstants.h │ ├── IWLMac80211.cpp │ ├── IWLMvmDriver.cpp │ ├── IWLMvmDriver.hpp │ ├── IWLMvmPhy.cpp │ ├── IWLMvmPhy.hpp │ ├── IWLMvmScan.cpp │ ├── IWLMvmScan.hpp │ ├── IWLMvmSmartFifo.cpp │ ├── IWLMvmSmartFifo.hpp │ ├── IWLMvmSta.cpp │ ├── IWLMvmSta.hpp │ ├── IWLMvmTransOpsGen1.cpp │ ├── IWLMvmTransOpsGen1.hpp │ ├── IWLMvmTransOpsGen2.cpp │ ├── IWLMvmTransOpsGen2.hpp │ ├── IWMHdr.h │ ├── Mvm.h │ ├── MvmCmd.hpp │ └── MvmTransOps.cpp ├── nvm │ ├── IWLNvm.cpp │ ├── IWLNvmParser.cpp │ ├── IWLNvmParser.hpp │ └── IWLeeprom.h └── trans │ ├── IWLIO.cpp │ ├── IWLIO.hpp │ ├── IWLSCD.h │ ├── IWLTransOps.h │ ├── IWLTransport.cpp │ ├── IWLTransport.hpp │ ├── IWLTransportRx.cpp │ ├── IWLTransportTx.cpp │ ├── TransHdr.h │ └── TransOpsCommon.cpp ├── README.md └── img ├── QQ20191102-195821.png └── QQ20191102-195905.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/.gitignore -------------------------------------------------------------------------------- /AppleIntelWifiAdapter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/AppleIntelWifiAdapterV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/AppleIntelWifiAdapterV2.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/AppleIntelWifiAdapterV2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/AppleIntelWifiAdapterV2.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/HackIOEthernetInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/HackIOEthernetInterface.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/HackIONetworkInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/HackIONetworkInterface.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLCoex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLCoex.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLCtxtInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLCtxtInfo.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLCtxtInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLCtxtInfo.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLDebug.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLDevice.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLDevice.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLFH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLFH.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLInternal.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLInternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLInternal.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLPhyDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLPhyDb.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLPhyDb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLPhyDb.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/IWLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/IWLUtils.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/Info.plist -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/IO80211Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/IO80211Controller.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/IO80211Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/IO80211Interface.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/IO80211SkywalkInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/IO80211SkywalkInterface.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/IO80211WorkLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/IO80211WorkLoop.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/IOEthernetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/IOEthernetController.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/IONetworkController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/IONetworkController.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/IOSkywalkEthernetInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/IOSkywalkEthernetInterface.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/apple80211_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/apple80211_ioctl.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/apple80211_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/apple80211_var.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/apple80211/apple80211_wps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/apple80211/apple80211_wps.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/bitfield.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/cfg80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/cfg80211.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/ieee80211.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/ieee80211_radiotap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/ieee80211_radiotap.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/kernel.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/mac80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/mac80211.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/netdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/netdevice.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/nl80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/nl80211.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/random.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/skbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/skbuff.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/linux/types.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/aes.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/aes.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/arc4.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/arc4.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/blf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/blf.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/blf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/blf.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/cast.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/cast.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/castsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/castsb.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/chacha_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/chacha_private.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/chachapoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/chachapoly.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/chachapoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/chachapoly.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/cmac.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/cmac.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/cryptodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/cryptodev.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/des_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/des_locl.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/ecb3_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/ecb3_enc.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/ecb_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/ecb_enc.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/gmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/gmac.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/gmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/gmac.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/hmac.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/hmac.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/idgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/idgen.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/idgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/idgen.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/key_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/key_wrap.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/key_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/key_wrap.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/md5.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/md5.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/michael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/michael.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/michael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/michael.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/podd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/podd.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/poly1305.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/poly1305.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/rijndael.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/rijndael.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/rmd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/rmd160.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/rmd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/rmd160.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/set_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/set_key.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/sha1.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/sha1.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/sha2.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/sha2.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/sk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/sk.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/crypto/spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/crypto/spr.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/CTimeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/CTimeout.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/_string.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_amrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_amrr.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_amrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_amrr.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_bip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_bip.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_ccmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_ccmp.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_tkip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_tkip.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_wep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_crypto_wep.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_input.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_ioctl.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_ioctl.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_mira.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_mira.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_mira.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_mira.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_node.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_node.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_output.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_pae_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_pae_input.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_pae_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_pae_output.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_priv.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_proto.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_proto.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_radiotap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_radiotap.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_regdomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_regdomain.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_regdomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_regdomain.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_rssadapt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_rssadapt.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_rssadapt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_rssadapt.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/ieee80211_var.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/net80211/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/net80211/timeout.c -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/CTimeout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/CTimeout.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/_arc4random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/_arc4random.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/_buf.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/_if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/_if_ether.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/_if_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/_if_media.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/_mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/_mbuf.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/_null.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/endian.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/timeout.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/compat/openbsd/sys/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/compat/openbsd/sys/tree.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLCSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLCSR.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLDevice22000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLDevice22000.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLDevice7000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLDevice7000.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLDevice8000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLDevice8000.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLDevice9000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLDevice9000.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLDeviceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLDeviceBase.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLDeviceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLDeviceList.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/device/IWLPRPH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/device/IWLPRPH.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-3160-17.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-3160-17.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-3168-29.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-3168-29.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-7260-17.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-7260-17.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-7265-17.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-7265-17.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-7265D-27.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-7265D-27.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-8000C-36.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-8000C-36.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-8265-34.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-8265-34.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-8265-36.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-8265-36.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-9000-pu-b0-jf-b0-46.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-9000-pu-b0-jf-b0-46.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-9260-th-b0-jf-b0-46.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-9260-th-b0-jf-b0-46.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-Qu-b0-hr-b0-48.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-Qu-b0-hr-b0-48.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-Qu-b0-jf-b0-48.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-Qu-b0-jf-b0-48.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-Qu-c0-hr-b0-48.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-Qu-c0-hr-b0-48.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-Qu-c0-jf-b0-48.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-Qu-c0-jf-b0-48.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-QuZ-a0-hr-b0-48.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-QuZ-a0-hr-b0-48.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-QuZ-a0-jf-b0-48.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-QuZ-a0-jf-b0-48.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/firmware/iwlwifi-cc-a0-48.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/firmware/iwlwifi-cc-a0-48.ucode -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/FWFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/FWFile.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/FWImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/FWImg.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/IWLFw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/IWLFw.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/IWLUcodeParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/IWLUcodeParse.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/IWLUcodeParse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/IWLUcodeParse.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/NotificationWait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/NotificationWait.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/NotificationWait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/NotificationWait.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/alive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/alive.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/binding.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/cmdhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/cmdhdr.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/coex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/coex.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/commands.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/config.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/context.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/d3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/d3.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/datapath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/datapath.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/dbg-tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/dbg-tlv.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/debug.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/filter.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/led.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/location.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/mac-cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/mac-cfg.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/mac.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/nan.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/nvm-reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/nvm-reg.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/offload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/offload.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/paging.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/phy-ctxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/phy-ctxt.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/phy.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/power.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/rs.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/rx.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/scan.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/sf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/sf.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/soc.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/sta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/sta.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/stats.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/tdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/tdls.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/testing.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/time-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/time-event.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/tx.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/api/txq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/api/txq.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/fw/fw-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/fw/fw-api.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/hack80211/HackIO80211Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/hack80211/HackIO80211Interface.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/hack80211/HackIO80211Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/hack80211/HackIO80211Interface.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLConstants.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMac80211.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMac80211.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmDriver.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmDriver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmDriver.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmPhy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmPhy.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmPhy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmPhy.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmScan.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmScan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmScan.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmSmartFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmSmartFifo.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmSmartFifo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmSmartFifo.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmSta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmSta.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmSta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmSta.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen1.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen1.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen2.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWLMvmTransOpsGen2.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/IWMHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/IWMHdr.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/Mvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/Mvm.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/MvmCmd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/MvmCmd.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/mvm/MvmTransOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/mvm/MvmTransOps.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/nvm/IWLNvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/nvm/IWLNvm.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/nvm/IWLNvmParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/nvm/IWLNvmParser.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/nvm/IWLNvmParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/nvm/IWLNvmParser.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/nvm/IWLeeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/nvm/IWLeeprom.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLIO.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLIO.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLSCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLSCD.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLTransOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLTransOps.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLTransport.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLTransport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLTransport.hpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLTransportRx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLTransportRx.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/IWLTransportTx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/IWLTransportTx.cpp -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/TransHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/TransHdr.h -------------------------------------------------------------------------------- /AppleIntelWifiAdapter/trans/TransOpsCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/AppleIntelWifiAdapter/trans/TransOpsCommon.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/README.md -------------------------------------------------------------------------------- /img/QQ20191102-195821.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/img/QQ20191102-195821.png -------------------------------------------------------------------------------- /img/QQ20191102-195905.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxystd/AppleIntelWifiAdapter/HEAD/img/QQ20191102-195905.png --------------------------------------------------------------------------------