add support functions to handle station inactivity

Detect support for AP side inactivity timer and reading
to the inactivity time for a station.
This commit is contained in:
Andreas Schultz
2016-04-07 10:49:37 +02:00
parent 4b1caad54b
commit 8f03ecca9b
4 changed files with 143 additions and 4 deletions

View File

@ -111,6 +111,11 @@ static int station_deauthorize(struct wifi_wlan* wlan, const uint8_t* address)
return wlan->device->instance->ops->station_deauthorize(wlan, address);
}
static int station_get_inact_sec(struct wifi_wlan* wlan, const uint8_t* address)
{
return wlan->device->instance->ops->station_get_inact_sec(wlan, address);
}
/* */
static int wifi_frequency_to_radiotype(uint32_t freq)
{