Packet PingPayload

File: src/applications/pingapp/PingPayload.msg

Represents payload in an ICMP/ICMPv6 Echo Request/Reply.

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.

Fields:

Name Type Description
originatorId long

sender module id

seqNo long

sequence number

data unsigned char[]

Source code:

//
// Represents payload in an ICMP/ICMPv6 Echo Request/Reply.
//
packet PingPayload
{
    long originatorId; // sender module id
    long seqNo; // sequence number
    unsigned char data[];
}