Home | History | Annotate | Download | only in ic

Lines Matching defs:rts

1577  * Build a RTS control frame.
1583 struct ieee80211_frame_rts *rts;
1589 aprint_error_dev(sc->sc_dev, "could not allocate RTS frame\n");
1593 rts = mtod(m, struct ieee80211_frame_rts *);
1595 rts->i_fc[0] = IEEE80211_FC0_VERSION_0 | IEEE80211_FC0_TYPE_CTL |
1597 rts->i_fc[1] = IEEE80211_FC1_DIR_NODS;
1598 *(uint16_t *)rts->i_dur = htole16(dur);
1599 IEEE80211_ADDR_COPY(rts->i_ra, wh->i_addr1);
1600 IEEE80211_ADDR_COPY(rts->i_ta, wh->i_addr2);
1653 * IEEE Std 802.11-1999, pp 82: "A STA shall use an RTS/CTS exchange
1658 * mechanism (such as RTS/CTS or CTS-to-self) for ERP-OFDM MPDUs of
1678 aprint_error_dev(sc->sc_dev, "could not allocate RTS "