Packet EtherAppReq

File: src/applications/ethernet/EtherApp.msg

Request packet sent by EtherAppCli. Contains the number of bytes to be sent back as response; if this value is greater than ~1400, the reply will consist of several Ethernet frames. See also EtherAppResp.

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Fields:

Name Type Description
responseBytes long
requestId long

Source code:

//
// Request packet sent by EtherAppCli. Contains the number of bytes to be
// sent back as response; if this value is greater than ~1400, the reply
// will consist of several Ethernet frames. See also EtherAppResp.
//
packet EtherAppReq
{
    long requestId;
    long responseBytes;
}