diff --git a/src/common/tag-list.h b/src/common/tag-list.h index 10cf3ff60..0a3a0e186 100644 --- a/src/common/tag-list.h +++ b/src/common/tag-list.h @@ -109,7 +109,7 @@ public: * \param bufferSize the size of the tag when its serialization will * be completed. Typically, the return value of Tag::GetSerializedSize * \param start offset which uniquely identifies the first byte tagged by this tag. - * \param start offset which uniquely identifies the last byte tagged by this tag. + * \param end offset which uniquely identifies the last byte tagged by this tag. * \returns a buffer which can be used to write the tag data. * * diff --git a/src/devices/wifi/wifi-remote-station-manager.h b/src/devices/wifi/wifi-remote-station-manager.h index f8b6c9333..2c89e04dc 100644 --- a/src/devices/wifi/wifi-remote-station-manager.h +++ b/src/devices/wifi/wifi-remote-station-manager.h @@ -159,7 +159,6 @@ public: WifiMode GetDataMode (Ptr packet, uint32_t fullPacketSize); /** * \param packet the packet to send - * \param fullPacketSize the size of the packet after its 802.11 MAC header has been added. * \returns the transmission mode to use to send the RTS prior to the * transmission of the data packet itself. */ @@ -223,23 +222,23 @@ public: virtual bool NeedDataRetransmission (Ptr packet); /** - * \param the packet to send + * \param packet the packet to send * \returns true if this packet should be fragmented, false otherwise. */ virtual bool NeedFragmentation (Ptr packet); /** - * \param the packet to send + * \param packet the packet to send * \returns the number of fragments which should be used for this packet. */ virtual uint32_t GetNFragments (Ptr packet); /** - * \param the packet to send + * \param packet the packet to send * \param fragmentNumber the fragment index of the next fragment to send (starts at zero). * \returns the size of the corresponding fragment. */ virtual uint32_t GetFragmentSize (Ptr packet, uint32_t fragmentNumber); /** - * \param the packet to send + * \param packet the packet to send * \param fragmentNumber the fragment index of the next fragment to send (starts at zero). * \returns true if this is the last fragment, false otherwise. */ @@ -252,7 +251,7 @@ public: */ WifiMode GetCtsMode (WifiMode rtsMode); /** - * \param ackMode the transmission mode used to send an ACK we just received + * \param dataMode the transmission mode used to send an ACK we just received * \returns the transmission mode to use for the ACK to complete the data/ACK * handshake. */ diff --git a/src/internet-node/arp-l3-protocol.h b/src/internet-node/arp-l3-protocol.h index 8aed646cd..6815cdea0 100644 --- a/src/internet-node/arp-l3-protocol.h +++ b/src/internet-node/arp-l3-protocol.h @@ -60,6 +60,7 @@ public: * \param p * \param destination * \param device + * \param cache * \param hardwareDestination * \return */