Simple Module TCPExampleApp

Package: oversim.applications.tcpexampleapp
File: src/applications/tcpexampleapp/TCPExampleApp.ned

C++ definition

(no description)

TCPExampleApp

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

Name Type Description
BaseApp simple module

Base class for application implementations

Used in compound modules:

Name Type Description
TCPExampleAppModules compound module (no description)

Parameters:

Name Type Default value Description
rpcUdpTimeout double

default timeout value for direct RPCs

rpcKeyTimeout double

default timeout value for routed RPCs

optimizeTimeouts bool

calculate timeouts from measured RTTs and network coordinates

rpcExponentialBackoff bool

if true, doubles the timeout for every retransmission

debugOutput bool

enable debug output

sendPeriod int 30s

how much time to wait between sending packets

numToSend int 0

how many packets will we send at the same time?

largestKey int 10

largest key we can pick

Properties:

Name Value Description
class TCPExampleApp
display i=block/app

Gates:

Name Direction Size Description
udpIn input

gate from the UDP layer

from_lowerTier input

gate from the lower tier

from_upperTier input

gate from the upper tier

direct_in input

gate for sendDirect

trace_in input

gate for trace file commands

tcpIn input

gate from the TCP layer

tcpOut output

gate to the TCP layer

udpOut output

gate to the UDP layer

to_lowerTier output

gate to the lower tier

to_upperTier output

gate to the upper tier

Source code:

simple TCPExampleApp extends BaseApp
{
    parameters:
        @class(TCPExampleApp);
        int sendPeriod @unit(s) = default(30s);   // how much time to wait between sending packets
        int numToSend = default(0);             // how many packets will we send at the same time?
        int largestKey = default(10);            // largest key we can pick
}