Module Interface IRTPPayloadReceiver

Package: inet.transportlayer.rtp
File: src/inet/transportlayer/rtp/RTPPayloadReceiver.ned

Interface for RTP Payload Receivers.

These modules are internal to the RTP module; instances are created and connected dynamically by RTPProfile.

IRTPPayloadReceiver

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.

Parameters:

Name Type Default value Description
outputFileName string

use an empty string to disable this logging

outputLogFileName string

use an empty string to disable this logging

Source code:

//
// Interface for RTP Payload Receivers.
//
// These modules are internal to the ~RTP module; instances are created
// and connected dynamically by ~RTPProfile.
//
moduleinterface IRTPPayloadReceiver
{
    parameters:
        string outputFileName;  // use an empty string to disable this logging
        string outputLogFileName;   // use an empty string to disable this logging

    gates:
        input profileIn @labels(RTPInnerPacket);
        output profileOut @labels(RTPInnerPacket);
}