station: add auth/assoc debug events

These will be useful to trigger behavior around authentication and
association.
This commit is contained in:
James Prestwood 2024-06-25 06:06:21 -07:00 committed by Denis Kenzior
parent 300f0ddac5
commit d92e4c5663
1 changed files with 2 additions and 2 deletions

View File

@ -3486,10 +3486,10 @@ static void station_netdev_event(struct netdev *netdev, enum netdev_event event,
switch (event) {
case NETDEV_EVENT_AUTHENTICATING:
l_debug("Authenticating");
station_debug_event(station, "authenticating");
break;
case NETDEV_EVENT_ASSOCIATING:
l_debug("Associating");
station_debug_event(station, "associating");
break;
case NETDEV_EVENT_DISCONNECT_BY_AP:
case NETDEV_EVENT_DISCONNECT_BY_SME: