enum ieee80211_filter_flags — hardware filter flags
enum ieee80211_filter_flags { FIF_PROMISC_IN_BSS, FIF_ALLMULTI, FIF_FCSFAIL, FIF_PLCPFAIL, FIF_BCN_PRBRESP_PROMISC, FIF_CONTROL, FIF_OTHER_BSS, FIF_PSPOLL, FIF_PROBE_REQ };
promiscuous mode within your BSS, think of the BSS as your network segment and then this corresponds to the regular ethernet device promiscuous mode.
pass all multicast frames, this is used if requested by the user or if the hardware is not capable of filtering by multicast address.
pass frames with failed FCS (but you need to set the
RX_FLAG_FAILED_FCS_CRC
for them)
pass frames with failed PLCP CRC (but you need to set
the RX_FLAG_FAILED_PLCP_CRC
for them
This flag is set during scanning to indicate to the hardware that it should not filter beacons or probe responses by BSSID. Filtering them can greatly reduce the amount of processing mac80211 needs to do and the amount of CPU wakeups, so you should honour this flag if possible.
pass control frames (except for PS Poll), if PROMISC_IN_BSS is not set then only those addressed to this station.
pass frames destined to other BSSes
pass PS Poll frames, if PROMISC_IN_BSS is not set then only those addressed to this station.
pass probe request frames