Message SCTPSendInfo

File: src/inet/transportlayer/contract/sctp/SCTPCommand.msg

C++ definition

Control info to be used with the SEND command.

See also: SctpCommandCode, SCTP

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
SCTPCommand packet

Control info for SCTP connections. This message is to be set as control info (see cMessage::setControlInfo()) on all messages exchanged between SCTP and application, in both directions. Some commands and indications (SCTP_C_OPEN_xxx, SCTP_I_STATUS) use submessagees.

Fields:

Name Type Description
prMethod unsigned int
last bool
ppid unsigned int
primary bool
sackNow bool
assocId int

identifies the socket within the application

sid int
numMsgs int
ssn int
sendUnordered unsigned short
prValue double
localAddr L3Address
remoteAddr L3Address
localPort int
remotePort int
gate int
fd int

Source code:

//
// Control info to be used with the SEND command.
//
// @see ~SctpCommandCode, ~SCTP
//
message SCTPSendInfo extends SCTPCommand
{
    unsigned int prMethod;
    bool last;
    unsigned int ppid = 0;
    bool primary = true;
    bool sackNow = false;
}