Packet ICMPv6DestUnreachableMsg

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

C++ definition

Notes: 1. As defined in RFC2463: Section 3

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
type int

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

Source code:

//
// Notes:
//   1. As defined in RFC2463: Section 3
//
packet ICMPv6DestUnreachableMsg extends ICMPv6Message
{
    int code @enum(ICMPv6DEST_UN);
}