station: handle NETDEV_EVENT_FT_ROAMED

This commit is contained in:
James Prestwood 2022-09-27 12:47:27 -07:00 committed by Denis Kenzior
parent 07a9fc6c09
commit ceebf0dc53
1 changed files with 4 additions and 0 deletions

View File

@ -3176,6 +3176,10 @@ static void station_netdev_event(struct netdev *netdev, enum netdev_event event,
station_packets_lost(station, l_get_u32(event_data));
break;
case NETDEV_EVENT_FT_ROAMED:
if (station->state != STATION_STATE_ROAMING)
return;
station_roamed(station);
break;
}
}