SctpCommandReq
class(no description)
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 |
---|---|---|
TagBase | class |
This is an abstract base class that should not be directly added to a message as a tag. It is used as the base class of all tags, thus it doesn't have any fields. |
Known subclasses
Name | Type | Description |
---|---|---|
SctpAvailableReq | class | (no description) |
SctpConnectReq | class | (no description) |
SctpInfoReq | class | (no description) |
SctpOpenReq | class | (no description) |
SctpPathInfoReq | class | (no description) |
SctpRcvReq | class | (no description) |
SctpResetReq | class | (no description) |
SctpRtoReq | class | (no description) |
SctpSendQueueAbatedReq | class | (no description) |
SctpSendReq | class | (no description) |
SctpStatusReq | class | (no description) |
Fields
Name | Type | Description |
---|---|---|
socketId | 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
class SctpCommandReq extends TagBase { int socketId = -1; // identifies the socket within the application int sid = -1; int numMsgs = 1; int ssn = -1; unsigned short sendUnordered = false; double prValue = 0; L3Address localAddr; L3Address remoteAddr; int localPort = -1; int remotePort = -1; int gate = -1; int fd = -1; }File: src/inet/transportlayer/contract/sctp/SctpCommand.msg