wifi: set ether->mbps to highest supported rate of the associated ap

This commit is contained in:
cinap_lenrek 2014-04-21 16:44:38 +02:00
parent 49825fa795
commit 0f98415f99

View file

@ -654,6 +654,7 @@ wifsproc(void *arg)
Wnode wnscan;
Wnode *wn;
ulong now, tmout;
uchar *rate;
wifi = arg;
ether = wifi->ether;
@ -677,6 +678,8 @@ Scan:
tmout = 0;
while((wn = wifi->bss) != nil){
ether->link = (wn->status == Sassoc) || (wn->status == Sblocked);
if(ether->link && (rate = wn->maxrate) != nil)
ether->mbps = ((*rate & 0x7f)+1)/2;
now = MACHP(0)->ticks;
if(wn->status != Sneedauth && TK2SEC(now - wn->lastseen) > 60 || goodbss(wifi, wn) == 0){
wifideauth(wifi, wn);