| 960 | } |
| 961 | |
| 962 | void |
| 963 | ieee80211_notify_node_deauth(struct ieee80211_node *ni) |
| 964 | { |
| 965 | struct ieee80211vap *vap = ni->ni_vap; |
| 966 | struct ifnet *ifp = vap->iv_ifp; |
| 967 | |
| 968 | IEEE80211_NOTE(vap, IEEE80211_MSG_NODE, ni, "%s", "node deauth"); |
| 969 | |
| 970 | notify_macaddr(ifp, RTM_IEEE80211_DEAUTH, ni->ni_macaddr); |
| 971 | } |
| 972 | |
| 973 | void |
| 974 | ieee80211_notify_node_auth(struct ieee80211_node *ni) |
nothing calls this directly
no test coverage detected