mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-01 08:27:59 +00:00
o correct re-association indicator dispatched in node join event
o remove misleading "reassociation" msg on sta join MFC after: 3 days
This commit is contained in:
parent
849b4d998c
commit
ce8977dff3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173866
@ -1770,8 +1770,7 @@ ieee80211_node_join(struct ieee80211com *ic, struct ieee80211_node *ni, int resp
|
||||
newassoc = 0;
|
||||
|
||||
IEEE80211_NOTE(ic, IEEE80211_MSG_ASSOC | IEEE80211_MSG_DEBUG, ni,
|
||||
"station %sassociated at aid %d: %s preamble, %s slot time%s%s%s%s%s%s",
|
||||
newassoc ? "" : "re",
|
||||
"station associated at aid %d: %s preamble, %s slot time%s%s%s%s%s%s",
|
||||
IEEE80211_NODE_AID(ni),
|
||||
ic->ic_flags & IEEE80211_F_SHPREAMBLE ? "short" : "long",
|
||||
ic->ic_flags & IEEE80211_F_SHSLOT ? "short" : "long",
|
||||
@ -1793,7 +1792,8 @@ ieee80211_node_join(struct ieee80211com *ic, struct ieee80211_node *ni, int resp
|
||||
/* tell the authenticator about new station */
|
||||
if (ic->ic_auth->ia_node_join != NULL)
|
||||
ic->ic_auth->ia_node_join(ic, ni);
|
||||
ieee80211_notify_node_join(ic, ni, newassoc);
|
||||
ieee80211_notify_node_join(ic, ni,
|
||||
resp == IEEE80211_FC0_SUBTYPE_ASSOC_RESP);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user