TcpAvailableInfo

TcpAvailableInfo

class

Sent with message kind TCP_I_AVAILABLE, to let the app know about the local and remote IP address and port.

See also: TcpCommandCode, ITcp

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
TcpCommand class

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.

Fields

Name Type Description
localAddr L3Address
remoteAddr L3Address
localPort int
remotePort int
newSocketId int
userId int

id than can be freely used by the app

Source code

//
// Sent with message kind TCP_I_AVAILABLE, to let the app know
// about the local and remote IP address and port.
//
// @see ~TcpCommandCode, ~ITcp
//
class TcpAvailableInfo extends TcpCommand
{
    L3Address localAddr;
    L3Address remoteAddr;
    int localPort;
    int remotePort;
    int newSocketId;
}

File: src/inet/transportlayer/contract/tcp/TcpCommand.msg