ICMPv6 Echo Request packet (RFC2463: Section 4). Data is attached through encapsulation (see ICMPv6.cc)
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
ICMPv6Message (packet) |
Represents an ICMPv6 packet. |
Name | Type | Description |
---|---|---|
code | int |
set to 0. |
type | int |
int code; //TODO: this should be specific to different ICMP types. |
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 Data is attached through encapsulation. See ICMPv6.cc |
// // ICMPv6 Echo Request packet (RFC2463: Section 4). // Data is attached through encapsulation (see ICMPv6.cc) // packet ICMPv6EchoRequestMsg 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 //Data is attached through encapsulation. See ICMPv6.cc }