| 971 | } |
| 972 | |
| 973 | void |
| 974 | ieee80211_notify_node_auth(struct ieee80211_node *ni) |
| 975 | { |
| 976 | struct ieee80211vap *vap = ni->ni_vap; |
| 977 | struct ifnet *ifp = vap->iv_ifp; |
| 978 | |
| 979 | IEEE80211_NOTE(vap, IEEE80211_MSG_NODE, ni, "%s", "node auth"); |
| 980 | |
| 981 | notify_macaddr(ifp, RTM_IEEE80211_AUTH, ni->ni_macaddr); |
| 982 | } |
| 983 | |
| 984 | void |
| 985 | ieee80211_notify_country(struct ieee80211vap *vap, |
no test coverage detected