Searched refs:radiotap (Results 1 – 7 of 7) sorted by relevance
/openbmc/linux/Documentation/networking/ |
H A D | radiotap-headers.rst | 4 How to use radiotap headers 7 Pointer to the radiotap include file 81 Example valid radiotap header 86 0x00, 0x00, // <-- radiotap version + pad byte 87 0x0b, 0x00, // <- radiotap header length 97 If you are having to parse a radiotap struct, you can radically simplify the 98 job by using the radiotap parser that lives in net/wireless/radiotap.c and has 103 /* buf points to the start of the radiotap header part */ 128 /* radiotap "rate" u8 is in 135 /* radiotap uses 0 for 1st ant */ [all …]
|
H A D | mac80211-injection.rst | 11 [ radiotap header ] 15 The radiotap format is discussed in 16 ./Documentation/networking/radiotap-headers.rst. 18 Despite many radiotap parameters being currently defined, most only make sense 20 radiotap headers and used to control injection: 70 The injection code can also skip all other currently defined radiotap fields 71 facilitating replay of captured radiotap headers directly. 73 Here is an example valid radiotap header defining some parameters:: 75 0x00, 0x00, // <-- radiotap version 76 0x0b, 0x00, // <- radiotap header length
|
H A D | index.rst | 94 radiotap-headers
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | core.c | 435 struct ieee80211_radiotap_header *radiotap; in brcmf_netif_mon_rx() local 452 radiotap = skb_push(skb, sizeof(*radiotap)); in brcmf_netif_mon_rx() 453 memset(radiotap, 0, sizeof(*radiotap)); in brcmf_netif_mon_rx() 454 radiotap->it_len = cpu_to_le16(sizeof(*radiotap)); in brcmf_netif_mon_rx() 459 struct ieee80211_radiotap_header *radiotap; in brcmf_netif_mon_rx() local 462 radiotap = skb_push(skb, sizeof(*radiotap)); in brcmf_netif_mon_rx() 463 memset(radiotap, 0, sizeof(*radiotap)); in brcmf_netif_mon_rx() 464 radiotap->it_len = cpu_to_le16(sizeof(*radiotap)); in brcmf_netif_mon_rx()
|
/openbmc/linux/net/wireless/ |
H A D | Makefile | 13 cfg80211-y += core.o sysfs.o radiotap.o util.o reg.o scan.o nl80211.o
|
/openbmc/linux/drivers/net/wireless/intel/ipw2x00/ |
H A D | Kconfig | 113 bool "Enable radiotap format 802.11 raw packet support" 117 bool "Enable creation of a RF radiotap promiscuous interface" 122 This second interface will provide every received in radiotap
|
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/mvm/ |
H A D | rxmq.c | 211 struct ieee80211_radiotap_vendor_content *radiotap; in iwl_mvm_add_rtap_sniffer_config() local 217 radiotap = iwl_mvm_radiotap_put_tlv(skb, in iwl_mvm_add_rtap_sniffer_config() 219 sizeof(*radiotap) + vendor_data_len); in iwl_mvm_add_rtap_sniffer_config() 222 radiotap->oui[0] = 0xf6; in iwl_mvm_add_rtap_sniffer_config() 223 radiotap->oui[1] = 0x54; in iwl_mvm_add_rtap_sniffer_config() 224 radiotap->oui[2] = 0x25; in iwl_mvm_add_rtap_sniffer_config() 226 radiotap->oui_subtype = 1; in iwl_mvm_add_rtap_sniffer_config() 227 radiotap->vendor_type = 0; in iwl_mvm_add_rtap_sniffer_config() 230 memcpy(radiotap->data, &mvm->cur_aid, sizeof(mvm->cur_aid)); in iwl_mvm_add_rtap_sniffer_config()
|