src/wifi/model/wifi-remote-station-manager.h
changeset 11100 86e53d8a4cfe
parent 11083 96e983e7cd5d
child 11159 b744c32b69bc
equal deleted inserted replaced
11099:304dc73bbfbe 11100:86e53d8a4cfe
   636    * \param station the station being queried
   636    * \param station the station being queried
   637    * \return the number of transmit antenna the station has
   637    * \return the number of transmit antenna the station has
   638    */
   638    */
   639   uint32_t GetNumberOfTransmitAntennas (const WifiRemoteStation *station) const;
   639   uint32_t GetNumberOfTransmitAntennas (const WifiRemoteStation *station) const;
   640   /**
   640   /**
       
   641    * Return the Number of extension spatial streams (Ness) the station has.
       
   642    *
       
   643    * \param station the station being queried
       
   644    * \return the number of Ness the station has
       
   645    */
       
   646   uint32_t GetNess (const WifiRemoteStation *station) const;
       
   647   /**
   641    * Return the long retry limit of the given station.
   648    * Return the long retry limit of the given station.
   642    *
   649    *
   643    * \param station the station being queried
   650    * \param station the station being queried
   644    * \return the long retry limit of the the station
   651    * \return the long retry limit of the the station
   645    */
   652    */
   997   Mac48Address m_address;  //!< Mac48Address of the remote station
  1004   Mac48Address m_address;  //!< Mac48Address of the remote station
   998   WifiRemoteStationInfo m_info;
  1005   WifiRemoteStationInfo m_info;
   999   bool m_shortGuardInterval;  //!< Flag if short guard interval is supported by the remote station
  1006   bool m_shortGuardInterval;  //!< Flag if short guard interval is supported by the remote station
  1000   uint32_t m_rx;  //!< Number of RX antennas of the remote station
  1007   uint32_t m_rx;  //!< Number of RX antennas of the remote station
  1001   uint32_t m_tx;  //!< Number of TX antennas of the remote station
  1008   uint32_t m_tx;  //!< Number of TX antennas of the remote station
       
  1009   uint32_t m_ness;  //!< Number of streams in beamforming of the remote station
  1002   bool m_stbc;  //!< Flag if STBC is used by the remote station
  1010   bool m_stbc;  //!< Flag if STBC is used by the remote station
  1003   bool m_greenfield;  //!< Flag if green field is used by the remote station
  1011   bool m_greenfield;  //!< Flag if green field is used by the remote station
  1004 
  1012 
  1005 };
  1013 };
  1006 
  1014