NED File src/inet/transportlayer/rtp/RTPProfile.ned

Name Type Description
RTPProfile simple module

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

RTPAVProfile simple module

Audio-Video RTP Profile. RTPAVProfile is internal to the RTP module; instances are created and connected dynamically by RTP.

Source code:

package inet.transportlayer.rtp;

//
// Generic RTP Profile. ~RTPProfile is internal to the ~RTP module;
// instances are created and connected dynamically by ~RTP.
//
simple RTPProfile
{
    parameters:
        bool autoOutputFileNames;

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

//
// Audio-Video RTP Profile. ~RTPAVProfile is internal to the ~RTP module;
// instances are created and connected dynamically by ~RTP.
//
simple RTPAVProfile
{
    parameters:
        bool autoOutputFileNames;

    gates:
        input rtpIn;
        input payloadSenderIn;
        input payloadReceiverIn[];
        output rtpOut;
        output payloadSenderOut;
        output payloadReceiverOut[];
}