Gustavo patch for bug 676

This commit is contained in:
Craig Dowell
2009-10-06 22:59:55 -07:00
parent 3abf4a5910
commit 2ecfd78d79
2 changed files with 20 additions and 0 deletions

View File

@@ -53,6 +53,16 @@ class Icmpv4L4Protocol;
*
* This is the actual implementation of IP. It contains APIs to send and
* receive packets at the IP layer, as well as APIs for IP routing.
*
* This class contains two distinct groups of trace sources. The
* trace sources 'Rx' and 'Tx' are called, respectively, immediately
* after receiving from the NetDevice and immediately before sending
* to a NetDevice for transmitting a packet. These are low level
* trace sources that include the Ipv4Header already serialized into
* the packet. In contrast, the Drop, SendOutgoing, UnicastForward,
* and LocalDeliver trace sources are slightly higher-level and pass
* around the Ipv4Header as an explicit parameter and not as part of
* the packet.
*/
class Ipv4L3Protocol : public Ipv4
{

View File

@@ -44,6 +44,16 @@ class Ipv6AutoconfiguredPrefix;
/**
* \class Ipv6L3Protocol
* \brief IPv6 layer implementation.
*
* This class contains two distinct groups of trace sources. The
* trace sources 'Rx' and 'Tx' are called, respectively, immediately
* after receiving from the NetDevice and immediately before sending
* to a NetDevice for transmitting a packet. These are low level
* trace sources that include the Ipv4Header already serialized into
* the packet. In contrast, the Drop, SendOutgoing, UnicastForward,
* and LocalDeliver trace sources are slightly higher-level and pass
* around the Ipv4Header as an explicit parameter and not as part of
* the packet.
*/
class Ipv6L3Protocol : public Ipv6
{