Date: Wed, 10 Nov 2004 21:15:34 GMT From: Sam Leffler <sam@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 64839 for review Message-ID: <200411102115.iAALFYDM049614@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=64839 Change 64839 by sam@sam_ebb on 2004/11/10 21:14:51 remove inactivity timer stuff Affected files ... .. //depot/projects/wifi/sbin/ifconfig/ifieee80211.c#8 edit Differences ... ==== //depot/projects/wifi/sbin/ifconfig/ifieee80211.c#8 (text+ko) ==== @@ -1199,33 +1199,6 @@ spacer = ' '; } } - - if (verbose) { - if (spacer != '\t') - printf("\n"); - spacer = '\t'; - } - - ireq.i_type = IEEE80211_IOC_INACT; - if (ioctl(s, SIOCG80211, &ireq) != -1) { - printf("%cinact%s %u", spacer, - verbose ? "(run)" : "", ireq.i_val); - spacer = ' '; - } - - if (verbose) { - ireq.i_type = IEEE80211_IOC_INACT_AUTH; - if (ioctl(s, SIOCG80211, &ireq) != -1) { - printf("%cinact(auth) %u", spacer, ireq.i_val); - spacer = ' '; - } - - ireq.i_type = IEEE80211_IOC_INACT_INIT; - if (ioctl(s, SIOCG80211, &ireq) != -1) { - printf("%cinact(init) %u", spacer, ireq.i_val); - spacer = ' '; - } - } } else { ireq.i_type = IEEE80211_IOC_ROAMING; if (ioctl(s, SIOCG80211, &ireq) != -1) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200411102115.iAALFYDM049614>