Fix the "am I a net80211 vap" check for bpf listeners.
I changed it to use if_transmit a while ago but apparently with monitor mode the if_transmit method is overridden. This is (mostly) a workaround until a more permanent solution can be found. Submitted by: Patrick Kelsey <kelsey@ieee.org> Approved by: re@ (gjb)
This commit is contained in:
parent
bf5147c58b
commit
fce9c39777
@ -808,9 +808,9 @@ static eventhandler_tag wlan_ifllevent;
|
||||
static void
|
||||
bpf_track(void *arg, struct ifnet *ifp, int dlt, int attach)
|
||||
{
|
||||
/* NB: identify vap's by if_start */
|
||||
/* NB: identify vap's by if_init */
|
||||
if (dlt == DLT_IEEE802_11_RADIO &&
|
||||
ifp->if_transmit == ieee80211_vap_transmit) {
|
||||
ifp->if_init == ieee80211_init) {
|
||||
struct ieee80211vap *vap = ifp->if_softc;
|
||||
/*
|
||||
* Track bpf radiotap listener state. We mark the vap
|
||||
|
Loading…
Reference in New Issue
Block a user