wifi: fix typos and cleanup doxygen
This commit is contained in:
@@ -193,7 +193,7 @@ public:
|
||||
|
||||
/*
|
||||
* This information element is a bit special in that it is only
|
||||
* included if the STA is an VHT STA. To support this we
|
||||
* included if the STA is an HE STA. To support this we
|
||||
* override the Serialize and GetSerializedSize methods of
|
||||
* WifiInformationElement.
|
||||
*/
|
||||
|
||||
@@ -598,7 +598,7 @@ ATTRIBUTE_HELPER_CPP (HtCapabilities);
|
||||
* output stream output operator
|
||||
*
|
||||
* \param os output stream
|
||||
* \param htcapabilities
|
||||
* \param htcapabilities the HT capabilities
|
||||
*
|
||||
* \returns output stream
|
||||
*/
|
||||
@@ -620,7 +620,7 @@ operator << (std::ostream &os, const HtCapabilities &htcapabilities)
|
||||
* input stream input operator
|
||||
*
|
||||
* \param is input stream
|
||||
* \param htcapabilities
|
||||
* \param htcapabilities the HT capabilities
|
||||
*
|
||||
* \returns input stream
|
||||
*/
|
||||
|
||||
@@ -496,7 +496,7 @@ ATTRIBUTE_HELPER_CPP (HtOperation);
|
||||
* output stream output operator
|
||||
*
|
||||
* \param os output stream
|
||||
* \param htOperation
|
||||
* \param htOperation the HT operation
|
||||
*
|
||||
* \returns output stream
|
||||
*/
|
||||
@@ -514,7 +514,7 @@ operator << (std::ostream &os, const HtOperation &htOperation)
|
||||
* input stream input operator
|
||||
*
|
||||
* \param is input stream
|
||||
* \param htOperation
|
||||
* \param htOperation the HT operation
|
||||
*
|
||||
* \returns input stream
|
||||
*/
|
||||
|
||||
@@ -442,23 +442,7 @@ private:
|
||||
uint8_t m_htSupported;
|
||||
};
|
||||
|
||||
/**
|
||||
* output stream output operator
|
||||
*
|
||||
* \param os output stream
|
||||
* \param htOperation
|
||||
*
|
||||
* \returns output stream
|
||||
*/
|
||||
std::ostream &operator << (std::ostream &os, const HtOperation &htOperation);
|
||||
/**
|
||||
* input stream input operator
|
||||
*
|
||||
* \param is input stream
|
||||
* \param htOperation
|
||||
*
|
||||
* \returns input stream
|
||||
*/
|
||||
std::istream &operator >> (std::istream &is, HtOperation &htOperation);
|
||||
|
||||
ATTRIBUTE_HELPER_HEADER (HtOperation);
|
||||
|
||||
@@ -71,7 +71,7 @@ VhtCapabilities::SetVhtSupported (uint8_t vhtsupported)
|
||||
uint8_t
|
||||
VhtCapabilities::GetInformationFieldSize () const
|
||||
{
|
||||
//we should not be here if ht is not supported
|
||||
//we should not be here if vht is not supported
|
||||
NS_ASSERT (m_vhtSupported > 0);
|
||||
return 12;
|
||||
}
|
||||
@@ -432,7 +432,7 @@ ATTRIBUTE_HELPER_CPP (VhtCapabilities);
|
||||
* output stream output operator
|
||||
*
|
||||
* \param os output stream
|
||||
* \param VhtCapabilities
|
||||
* \param VhtCapabilities the VHT capabilities
|
||||
*
|
||||
* \returns output stream
|
||||
*/
|
||||
@@ -448,7 +448,7 @@ operator << (std::ostream &os, const VhtCapabilities &VhtCapabilities)
|
||||
* input stream input operator
|
||||
*
|
||||
* \param is input stream
|
||||
* \param VhtCapabilities
|
||||
* \param VhtCapabilities the VHT capabilities
|
||||
*
|
||||
* \returns input stream
|
||||
*/
|
||||
|
||||
@@ -167,7 +167,7 @@ ATTRIBUTE_HELPER_CPP (VhtOperation);
|
||||
* output stream output operator
|
||||
*
|
||||
* \param os output stream
|
||||
* \param VhtOperation
|
||||
* \param VhtOperation the VHT operation
|
||||
*
|
||||
* \returns output stream
|
||||
*/
|
||||
@@ -185,7 +185,7 @@ operator << (std::ostream &os, const VhtOperation &VhtOperation)
|
||||
* input stream input operator
|
||||
*
|
||||
* \param is input stream
|
||||
* \param VhtOperation
|
||||
* \param VhtOperation the VHT operation
|
||||
*
|
||||
* \returns input stream
|
||||
*/
|
||||
|
||||
@@ -161,23 +161,7 @@ private:
|
||||
uint8_t m_vhtSupported;
|
||||
};
|
||||
|
||||
/**
|
||||
* output stream output operator
|
||||
*
|
||||
* \param os output stream
|
||||
* \param VhtOperation
|
||||
*
|
||||
* \returns output stream
|
||||
*/
|
||||
std::ostream &operator << (std::ostream &os, const VhtOperation &VhtOperation);
|
||||
/**
|
||||
* input stream input operator
|
||||
*
|
||||
* \param is input stream
|
||||
* \param VhtOperation
|
||||
*
|
||||
* \returns input stream
|
||||
*/
|
||||
std::istream &operator >> (std::istream &is, VhtOperation &VhtOperation);
|
||||
|
||||
ATTRIBUTE_HELPER_HEADER (VhtOperation);
|
||||
|
||||
Reference in New Issue
Block a user