Searched refs:iv_flags (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/sys/net80211/
H A Dieee80211_ioctl.c806 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0)
808 else if (vap->iv_flags & IEEE80211_F_DROPUNENC)
834 if (vap->iv_flags & IEEE80211_F_WPA)
843 if (vap->iv_flags & IEEE80211_F_PMGTON)
870 switch (vap->iv_flags & IEEE80211_F_WPA) {
892 ireq->i_val = (vap->iv_flags & IEEE80211_F_PRIVACY) != 0;
895 ireq->i_val = (vap->iv_flags & IEEE80211_F_DROPUNENC) != 0;
898 ireq->i_val = (vap->iv_flags & IEEE80211_F_COUNTERM) != 0;
901 ireq->i_val = (vap->iv_flags & IEEE80211_F_WME) != 0;
904 ireq->i_val = (vap->iv_flags
[all...]
H A Dieee80211_hostap.c264 if (vap->iv_flags & IEEE80211_F_WPA) {
378 if ((vap->iv_flags & IEEE80211_F_NOBRIDGE) == 0) {
585 (vap->iv_flags & IEEE80211_F_DWDS)))) {
670 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
767 if ((vap->iv_flags & IEEE80211_F_DROPUNENC) &&
840 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
988 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
1220 if ((vap->iv_flags & IEEE80211_F_WPA1) == 0) {
1223 wh, "WPA", "not WPA, flags 0x%x", vap->iv_flags);
1368 if ((vap->iv_flags
[all...]
H A Dieee80211_superg.c141 vap->iv_flags |= IEEE80211_F_FF;
145 vap->iv_flags |= IEEE80211_F_TURBOP;
189 vap->iv_flags & IEEE80211_F_ATHEROS,
190 ((vap->iv_flags & IEEE80211_F_WPA) == 0 &&
724 if (vap->iv_flags & IEEE80211_F_PRIVACY)
1007 return (vap->iv_flags & cap) != 0;
1035 vap->iv_flags |= IEEE80211_F_FF;
1037 vap->iv_flags &= ~IEEE80211_F_FF;
1043 vap->iv_flags |= IEEE80211_F_TURBOP;
1045 vap->iv_flags
[all...]
H A Dieee80211_sta.c404 if (vap->iv_flags & IEEE80211_F_WPA) {
684 if ((vap->iv_flags & IEEE80211_F_DWDS) &&
699 if ((vap->iv_flags & IEEE80211_F_DWDS) == 0) {
735 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
834 if ((vap->iv_flags & IEEE80211_F_DROPUNENC) &&
896 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
985 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
1261 return ((vap->iv_flags & IEEE80211_F_BGSCAN) &&
1452 (vap->iv_flags & IEEE80211_F_DOTH))
1548 if (vap->iv_flags
[all...]
H A Dieee80211.c500 vap->iv_flags = ic->ic_flags; /* propagate common flags */
520 vap->iv_flags |= IEEE80211_F_DESBSSID;
553 vap->iv_flags |= IEEE80211_F_WME;
555 vap->iv_flags |= IEEE80211_F_BURST;
559 vap->iv_flags |= IEEE80211_F_BGSCAN;
560 vap->iv_flags |= IEEE80211_F_DOTH; /* XXX no cap, just ena */
609 ic->ic_name, vap->iv_flags, vap->iv_flags_ext);
779 if (vap->iv_flags & flag) {
797 vap->iv_flags &= ~flag;
799 vap->iv_flags |
[all...]
H A Dieee80211_output.c1259 if (vap->iv_flags & IEEE80211_F_PRIVACY) {
1590 ((vap->iv_flags & IEEE80211_F_WPA) &&
2027 if (vap->iv_flags & IEEE80211_F_WPA1 && vap->iv_wpa_ie != NULL)
2038 if (vap->iv_flags & IEEE80211_F_WPA2 && vap->iv_rsn_ie != NULL)
2190 if (vap->iv_flags & IEEE80211_F_PRIVACY)
2197 if (IEEE80211_IS_CHAN_5GHZ(chan) && (vap->iv_flags & IEEE80211_F_DOTH))
2363 if (vap->iv_flags & IEEE80211_F_PRIVACY)
2376 (vap->iv_flags & IEEE80211_F_DOTH))
2431 ((vap->iv_flags & IEEE80211_F_WPA) == 0 &&
2501 if ((vap->iv_flags
[all...]
H A Dieee80211_node.c303 (vap->iv_flags & IEEE80211_F_PUREG) == 0)
344 if (vap->iv_flags & IEEE80211_F_PRIVACY)
351 vap->iv_flags |= IEEE80211_F_SIBSS;
353 if (vap->iv_flags & IEEE80211_F_DESBSSID)
361 if (vap->iv_flags & IEEE80211_F_DESBSSID)
395 if (vap->iv_flags & IEEE80211_F_PUREG) {
475 if (vap->iv_flags & IEEE80211_F_PRIVACY) {
490 if ((vap->iv_flags & IEEE80211_F_DESBSSID) &&
517 if (vap->iv_flags & IEEE80211_F_PRIVACY) {
532 if ((vap->iv_flags
[all...]
H A Dieee80211_wds.c136 KASSERT(vap->iv_flags & IEEE80211_F_DESBSSID, ("no bssid"));
548 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
647 if ((vap->iv_flags & IEEE80211_F_DROPUNENC) &&
H A Dieee80211_adhoc.c214 if (vap->iv_flags & IEEE80211_F_WPA) {
469 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0) {
568 if ((vap->iv_flags & IEEE80211_F_DROPUNENC) &&
846 if ((vap->iv_flags & IEEE80211_F_HIDESSID) && ssid[1] == 0) {
H A Dieee80211_power.c621 if (! (vap->iv_flags & IEEE80211_F_PMGTON))
H A Dieee80211_scan_sta.c643 if ((vap->iv_flags & IEEE80211_F_XR) &&
1078 if (vap->iv_flags & IEEE80211_F_PRIVACY) {
1121 if ((vap->iv_flags & IEEE80211_F_DESBSSID) &&
1403 (vap->iv_flags & IEEE80211_F_BGSCAN) &&
H A Dieee80211_var.h372 uint32_t iv_flags; /* state flags */ member in struct:ieee80211vap
535 /* ic_flags/iv_flags */
583 ((vap)->iv_flags & (ni)->ni_ath_flags & (bit))
H A Dieee80211_proto.c1194 (vap->iv_flags & IEEE80211_F_WME))
1201 if ((vap->iv_flags & IEEE80211_F_WME) == 0)
1218 (vap->iv_flags & IEEE80211_F_BURST) ?
H A Dieee80211_tdma.c661 if ((vap->iv_flags & IEEE80211_F_WME) &&
H A Dieee80211_crypto_tkip.c186 if (vap->iv_flags & IEEE80211_F_COUNTERM) {
285 if (vap->iv_flags & IEEE80211_F_COUNTERM) {
H A Dieee80211_ddb.c353 db_printf("\tflags=%b\n", vap->iv_flags, IEEE80211_F_BITS);
/freebsd-11-stable/sys/dev/if_ndis/
H A Dif_ndis.c2392 if (vap->iv_flags & IEEE80211_F_PMGTON)
2523 if (vap->iv_flags & IEEE80211_F_PRIVACY &&
2524 !(vap->iv_flags & IEEE80211_F_WPA)) {
2583 if (vap->iv_flags & IEEE80211_F_DROPUNENC)
2595 if ((vap->iv_flags & IEEE80211_F_WPA) &&
2649 if (vap->iv_flags & IEEE80211_F_DESBSSID &&
2801 vap->iv_flags &= ~IEEE80211_F_PMGTON;
2803 vap->iv_flags |= IEEE80211_F_PMGTON;
2838 vap->iv_flags &= ~IEEE80211_F_WPA;
2853 vap->iv_flags |
[all...]
/freebsd-11-stable/sys/dev/iwm/
H A Dif_iwm_power.c382 if (vap != NULL && (vap->iv_flags & IEEE80211_F_PMGTON) == 0)
/freebsd-11-stable/sys/dev/wi/
H A Dif_wi.c794 if (vap->iv_flags & IEEE80211_F_PMGTON) {
816 (vap->iv_flags & IEEE80211_F_WPA)) {
883 (vap->iv_flags & IEEE80211_F_HIDESSID)) {
892 (vap->iv_flags & IEEE80211_F_WPA) &&
1697 val = (vap->iv_flags & IEEE80211_F_PRIVACY) ? 1 : 0;
1701 if ((vap->iv_flags & IEEE80211_F_PRIVACY) == 0)
1720 if (vap->iv_flags & IEEE80211_F_PRIVACY) {
/freebsd-11-stable/sys/dev/iwi/
H A Dif_iwi.c1792 if (vap->iv_flags & IEEE80211_F_SHPREAMBLE)
1905 if (vap->iv_flags & IEEE80211_F_PRIVACY)
2513 if (vap->iv_flags & IEEE80211_F_PMGTON) {
2904 if ((vap->iv_flags & IEEE80211_F_WME) && ni->ni_ies.wme_ie != NULL) {
2930 if ((vap->iv_flags & IEEE80211_F_PRIVACY) &&
2946 if (vap->iv_flags & IEEE80211_F_WPA)
2958 if (vap->iv_flags & IEEE80211_F_PRIVACY)
/freebsd-11-stable/sys/dev/mwl/
H A Dif_mwl.c3057 /* XXX iv_flags & IEEE80211_F_SHPREAMBLE? */
3757 else if (vap->iv_flags & IEEE80211_F_PUREG)
3762 if (vap->iv_flags & IEEE80211_F_PUREG)
3896 if ((vap->iv_flags & (IEEE80211_F_PRIVACY|IEEE80211_F_WPA)) ==
4059 0, 0, NULL, vap->iv_flags & IEEE80211_F_WME, 0);
4144 "%s: %s(RUN): iv_flags 0x%08x bintvl %d bssid %s "
4146 vap->iv_ifp->if_xname, __func__, vap->iv_flags,
4186 if ((vap->iv_flags & IEEE80211_F_DWDS) &&
4217 } else if ((vap->iv_flags & IEEE80211_F_DWDS) &&
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_rsu.c1397 if (vap->iv_flags & IEEE80211_F_WPA) {
1414 if (vap->iv_flags & (IEEE80211_F_PRIVACY | IEEE80211_F_WPA))
/freebsd-11-stable/sys/dev/ipw/
H A Dif_ipw.c2196 if (vap->iv_flags & IEEE80211_F_PRIVACY) {
2212 data = htole32((vap->iv_flags & IEEE80211_F_PRIVACY) ? IPW_WEPON : 0);
/freebsd-11-stable/sys/dev/ath/
H A Dif_ath.c5583 (vap->iv_flags & IEEE80211_F_PRIVACY)) {
5608 "%s(RUN): iv_flags 0x%08x bintvl %d bssid %s "
5610 vap->iv_flags, ni->ni_intval, ether_sprintf(ni->ni_bssid),
5865 (vap->iv_flags & IEEE80211_F_PRIVACY) == 0 && sc->sc_hasclrkey &&
/freebsd-11-stable/sys/dev/malo/
H A Dif_malo.c1751 "%s: %s(RUN): iv_flags 0x%08x bintvl %d bssid %s "
1753 vap->iv_ifp->if_xname, __func__, vap->iv_flags,

Completed in 419 milliseconds

12