IpSinkApp

Package: inet.applications.ipapp

IpSinkApp

compound module

Implements an IP application that only receives packets.

source : like IActivePacketSource

ActivePacketSource: An active packet source which pushes packets into the connected module.

IActivePacketSource: Interface for active packet source modules.

Source:
source: <default("ActivePacketSource")> like IActivePacketSource if typename != "" {
    parameters:
        @display("p=200,150");
} tagger : like IPacketFlow

IPacketFlow: Interface for packet flows.

Source:
tagger: <default("")> like IPacketFlow {
    parameters:
        @display("p=200,300");
} measurementStarter : like IPacketFlow

IPacketFlow: Interface for packet flows.

Source:
measurementStarter: <default("")> like IPacketFlow {
    parameters:
        @display("p=200,450");
} sink : like IPassivePacketSink

PassivePacketSink: A passive packet sink which is pushed with packets by the connected packet producer.

IPassivePacketSink: Interface for passive packet sink modules.

Source:
sink: <default("PassivePacketSink")> like IPassivePacketSink if typename != "" {
    parameters:
        @display("p=500,150");
} measurementRecorder : like IPacketFlow

IPacketFlow: Interface for packet flows.

Source:
measurementRecorder: <default("")> like IPacketFlow {
    parameters:
        @display("p=500,450");
} io : IpSocketIo

Provides IP socket handling for generic applications.

Source:
io: IpSocketIo {
    parameters:
        @display("p=350,600");
}

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends

Name Type Description
IpApp compound module

Generates traffic for a IP application. The traffic source and traffic sink modules can be built from queueing model elements.

Parameters

Name Type Default value Description
interfaceTableModule string

Properties

Name Value Description
application
display i=block/app

Gates

Name Direction Size Description
socketIn input
socketOut output

Unassigned submodule parameters

Name Type Default value Description
io.displayStringTextFormat string ""

Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information

io.interfaceTableModule string
io.localAddress string ""
io.destAddress string ""
io.protocol string ""
io.stopOperationExtraTime double -1s

Extra time after lifecycle stop operation finishes

io.stopOperationTimeout double 2s

Timeout value for lifecycle stop operation

Source code

//
// Implements an IP application that only receives packets.
//
module IpSinkApp extends IpApp
{
    parameters:
        source.typename = "";
}
File: src/inet/applications/ipapp/IpSinkApp.ned