Packet ICMPv6EchoReplyMsg

File: src/inet/networklayer/icmpv6/ICMPv6Message.msg

C++ definition

ICMPv6 Echo Reply packet. Data is attached through encapsulation (see ICMPv6.cc)

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends:

Name Type Description
ICMPv6Message packet

Represents an ICMPv6 packet.

Fields:

Name Type Description
code int

set to 0.

identifier int

identifier to aid in matching Echo replies. May be Zero

seqNumber int

sequence number to aid in matching Echo replies. May be Zero

type int

int code; //TODO: this should be specific to different ICMP types.

Source code:

//
// ICMPv6 Echo Reply packet. Data is attached through encapsulation (see ICMPv6.cc)
//
packet ICMPv6EchoReplyMsg extends ICMPv6Message
{
    int code; //set to 0.
    int identifier; // identifier to aid in matching Echo replies. May be Zero
    int seqNumber; // sequence number to aid in matching Echo replies. May be Zero
}