Message ICMPv6EchoReplyMsg

File: Network/ICMPv6/ICMPv6Message.msg

C++ definition: click here

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

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

ICMPv6Message

Represents an ICMPv6 packet.

Properties:

Name Value Description
omitGetVerb true

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

Source code:

message ICMPv6EchoReplyMsg extends ICMPv6Message
{
    properties:
        omitGetVerb = true;
    fields:
        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
}