RtpProfile

Package: inet.transportlayer.rtp

RtpProfile

simple module

C++ definition

Generic RTP Profile. ~RtpProfile is internal to the ~Rtp module; instances are created and connected dynamically by ~Rtp.

Inheritance diagram

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

Extends

Name Type Description
SimpleModule simple module

Base module for all INET simple modules.

Parameters

Name Type Default value Description
displayStringTextFormat string ""

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

autoOutputFileNames bool

Properties

Name Value Description
class RtpProfile

Gates

Name Direction Size Description
rtpIn input
payloadSenderIn input
payloadReceiverIn [ ] input
rtpOut output
payloadSenderOut output
payloadReceiverOut [ ] output

Source code

//
// Generic RTP Profile. ~RtpProfile is internal to the ~Rtp module;
// instances are created and connected dynamically by ~Rtp.
//
simple RtpProfile extends SimpleModule
{
    parameters:
        @class(RtpProfile);
        bool autoOutputFileNames;

    gates:
        input rtpIn;
        input payloadSenderIn;
        input payloadReceiverIn[];
        output rtpOut @labels(RtpInnerPacket);
        output payloadSenderOut;
        output payloadReceiverOut[];
}

File: src/inet/transportlayer/rtp/RtpProfile.ned