View | Details | Raw Unified | Return to bug 676
Collapse All | Expand All

(-)a/src/internet-stack/ipv4-l3-protocol.h (+10 lines)
 Lines 53-58    Link Here 
53
 * 
53
 * 
54
 * This is the actual implementation of IP.  It contains APIs to send and
54
 * This is the actual implementation of IP.  It contains APIs to send and
55
 * receive packets at the IP layer, as well as APIs for IP routing.
55
 * receive packets at the IP layer, as well as APIs for IP routing.
56
 *
57
 * This class contains two distinct groups of trace sources.  The
58
 * trace sources 'Rx' and 'Tx' are called, respectively, immediately
59
 * after receiving from the NetDevice and immediately before sending
60
 * to a NetDevice for transmitting a packet.  These are low level
61
 * trace sources that include the Ipv4Header already serialized into
62
 * the packet.  In contrast, the Drop, SendOutgoing, UnicastForward,
63
 * and LocalDeliver trace sources are slightly higher-level and pass
64
 * around the Ipv4Header as an explicit parameter and not as part of
65
 * the packet.
56
 */
66
 */
57
class Ipv4L3Protocol : public Ipv4
67
class Ipv4L3Protocol : public Ipv4
58
{
68
{
(-)a/src/internet-stack/ipv6-l3-protocol.h (+10 lines)
 Lines 44-49    Link Here 
44
/**
44
/**
45
 * \class Ipv6L3Protocol
45
 * \class Ipv6L3Protocol
46
 * \brief IPv6 layer implementation.
46
 * \brief IPv6 layer implementation.
47
 *
48
 * This class contains two distinct groups of trace sources.  The
49
 * trace sources 'Rx' and 'Tx' are called, respectively, immediately
50
 * after receiving from the NetDevice and immediately before sending
51
 * to a NetDevice for transmitting a packet.  These are low level
52
 * trace sources that include the Ipv4Header already serialized into
53
 * the packet.  In contrast, the Drop, SendOutgoing, UnicastForward,
54
 * and LocalDeliver trace sources are slightly higher-level and pass
55
 * around the Ipv4Header as an explicit parameter and not as part of
56
 * the packet.
47
 */
57
 */
48
class Ipv6L3Protocol : public Ipv6
58
class Ipv6L3Protocol : public Ipv6
49
{
59
{

Return to bug 676