TcpServerConnection

Package: inet.applications.tcpapp

TcpServerConnection

compound module

This module is a generic TCP server connection. The traffic source and traffic sink modules can be built from queueing model elements.

See also: TcpServerApp

IActivePacketSource IPassivePacketSink TcpServerSocketIo

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.

Known subclasses

Name Type Description
TcpRequestResponseApp compound module

This module is a generic request/response based server application. For each request it receives, it generates a different traffic based on the data the request contains. The client application can be any source that is capable of generating packets with different data. The first byte of the packet data determines the response traffic, which can be configured to produce complex streams of packets with various data and timing distributions.

Properties

Name Value Description
display i=block/cogwheel

Gates

Name Direction Size Description
socketIn input
socketOut output

Source code

//
// This module is a generic TCP server connection. The traffic source and traffic
// sink modules can be built from queueing model elements.
//
// @see ~TcpServerApp
//
module TcpServerConnection like IApp
{
    parameters:
        @display("i=block/cogwheel");
    gates:
        input socketIn;
        output socketOut;
    submodules:
        source: <default("ActivePacketSource")> like IActivePacketSource {
            parameters:
                @display("p=100,100");
        }
        sink: <default("PassivePacketSink")> like IPassivePacketSink {
            parameters:
                @display("p=200,100");
        }
        io: TcpServerSocketIo {
            parameters:
                @display("p=150,200");
        }
    connections:
        source.out --> io.trafficIn;
        io.socketOut --> socketOut;
        socketIn --> io.socketIn;
        io.trafficOut --> sink.in;
}
File: src/inet/applications/tcpapp/TcpServerConnection.ned