Class TCPConnection

File: src/inet/transportlayer/tcp/TCPConnection.msg

C++ definition

(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
cObject (unknown -- not in documented files)

Fields:

Name Type Description
localAddress L3Address
localPort int
remoteAddress L3Address
remotePort int

Source code:

class TCPConnection extends cObject
{
    @existingClass(true);
    @descriptor(readonly);
    L3Address localAddress @opaque;
    int localPort;
    L3Address remoteAddress @opaque;
    int remotePort;
}