Class TCPErrorInfo

File: Transport/Contract/TCPCommand.msg

C++ definition: click here

Currently not in use.

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

TCPCommand

Control info for TCP connections. This class is to be set as control info (see cMessage::setControlInfo()) on all messages exchanged between TCP and application, in both directions. Some commands and indications (TCP_C_OPEN_xxx, TCP_I_STATUS) use subclasses.

Properties:

Name Value Description
omitGetVerb true

Fields:

Name Type Description
errorCode int
messageText string

Source code:

class TCPErrorInfo extends TCPCommand
{
    properties:
        omitGetVerb = true;
    fields:
        int errorCode enum(TCPErrorCode);
        string messageText;
};