On Thu, Oct 28, 2010 at 1:20 PM, David Coppa <[email protected]> wrote:
> On Thu, Oct 28, 2010 at 12:12 PM, Tomas Bodzar <[email protected]> wrote:
>
>> This may be a problem as
>> http://www.openbsd.org/cgi-bin/man.cgi?query=pgt&apropos=0&sektion=0&manpath=
>> OpenBSD+Current&arch=i386&format=html
>> man page says in CAVEATS section that it's better to turn of Power
>> savings for device (as it's true for most of others)
>
> No, this is only related to using it with "mediaopt hostap".
>
Ah, thought that this '(disabling power
saving on the client will fix this)' means on client connecting to AP.
Then just this comes to my mind :
case IEEE80211_S_RUN:
/* beacon miss */
if (ifp->if_flags & IFF_DEBUG) {
/* XXX bssid clobbered above */
printf("%s: no recent beacons from %s;"
" rescanning\n", ifp->if_xname,
ether_sprintf(ic->ic_bss->ni_bssid));
}
ieee80211_free_allnodes(ic);
/* FALLTHROUGH */
from
http://www.openbsd.org/cgi-bin/cvsweb/src/sys/net80211/ieee80211_proto.c?rev=1.44
> -dav