CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2019/05/12 12:12:38
Modified files:
sbin/ifconfig : ifconfig.8
sys/dev/ic : if_wi.c
sys/net80211 : ieee80211_input.c ieee80211_ioctl.c
ieee80211_ioctl.h ieee80211_output.c
ieee80211_var.h
Log message:
Fix 'ifconfig nwflags; These flags ended up overlapping with other flags
in ieee80211com's ic_flags because we haven't been paying attention to
them (they're not in the same place in the code and hence easy to miss).
Move them to a dedicated variable to avoid this problem in the future.
Add a new 'stayauth' nwflag which can be set to let net80211 ignore
deauth frames. This can be useful when deauth frames are being
persistently spoofed by an attacker. Idea from beck@
ok beck@ phessler@