Class SimpleNetworkProtocolControlInfo

File: src/inet/networklayer/common/SimpleNetworkProtocolControlInfo.msg

C++ definition

Network level control information for sending/receiving packets.

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
destinationAddress L3Address
sourceAddress L3Address
interfaceId int
protocol short
hopLimit short

Source code:

//
// Network level control information for sending/receiving packets.
//
class SimpleNetworkProtocolControlInfo
{
    @customize(true);
    L3Address destinationAddress @getter(_getDestinationAddress);
    L3Address sourceAddress @getter(_getSourceAddress);
    int interfaceId = -1;
    short protocol;
    short hopLimit;
}