make a pass through doxygen fixing errors

This commit is contained in:
Craig Dowell
2008-12-09 20:29:04 -08:00
parent 438b8e25e7
commit cea36a7ce4
9 changed files with 36 additions and 26 deletions

View File

@@ -72,7 +72,7 @@ public:
Ptr<Ipv4Interface> incomingInterface) = 0;
/**
* \param icmpSouce the source address of the icmp message
* \param icmpSource the source address of the icmp message
* \param icmpTtl the ttl of the icmp message
* \param icmpType the 'type' field of the icmp message
* \param icmpCode the 'code' field of the icmp message

View File

@@ -87,8 +87,19 @@ public:
virtual enum Ipv4L4Protocol::RxStatus Receive(Ptr<Packet> p,
Ipv4Address const &source,
Ipv4Address const &destination,
Ptr<Ipv4Interface> interface);
Ptr<Ipv4Interface> interface);
/**
* \brief Receive an ICMP packet
* \param icmpSource The IP address of the source of the packet.
* \param icmpTtl The time to live from the IP header
* \param icmpType The type of the message from the ICMP header
* \param icmpCode The message code from the ICMP header
* \param icmpInfo 32-bit integer carrying informational value of varying semantics.
* \param payloadSource The IP source addresss from the IP header of the packet
* \param payloadDestination The IP destination address from the IP header of the packet
* \param payload Payload of the ICMP packet
*/
virtual void ReceiveIcmp (Ipv4Address icmpSource, uint8_t icmpTtl,
uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo,
Ipv4Address payloadSource,Ipv4Address payloadDestination,