Packet FloodDatagram

File: src/inet/networklayer/flood/FloodDatagram.msg

C++ definition

(no description)

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
NetworkDatagramBase packet (no description)

Fields:

Name Type Description
ttl int

time to live field

seqNum unsigned long

sequence number

transportProtocol int
srcAddr L3Address
destAddr L3Address

Source code:

packet FloodDatagram extends NetworkDatagramBase
{
    @customize(true);

    int ttl = 1;    // time to live field
    unsigned long seqNum = 0; // sequence number
    int transportProtocol = -1;
}