RtpHost.ned

NED File src/inet/node/rtp/RtpHost.ned

Name Type Description
RtpHost compound module (no description)

Source code

//
// Copyright (C) 2020 OpenSim Ltd.
// the original file was included in the ~Udp sockets example

package inet.node.rtp;

import inet.applications.rtpapp.RtpApplication;
import inet.node.inet.StandardHost;
import inet.transportlayer.rtp.Rtcp;
import inet.transportlayer.rtp.Rtp;
import ned.IdealChannel;

module RtpHost extends StandardHost
{
    parameters:
        string profileName;
        string destinationAddress;
        int portNumber;
        double bandwidth;
        string fileName;
        int payloadType;
        hasUdp = true;
        @display("i=device/pc2");

    submodules:
        rtpApp: RtpApplication {
            parameters:
                profileName = parent.profileName;
                destinationAddress = parent.destinationAddress;
                portNumber = parent.portNumber;
                bandwidth = parent.bandwidth;
                fileName = parent.fileName;
                payloadType = parent.payloadType;
                @display("p=825,76");
        }
        rtp: Rtp {
            parameters:
                @display("p=975,76");
        }
        rtcp: Rtcp {
            parameters:
                @display("p=1125,76");
        }

    connections allowunconnected:
        // transport connections
        rtpApp.rtpOut --> rtp.appIn;
        rtpApp.rtpIn <-- rtp.appOut;

        rtp.udpOut --> at.in++;
        rtp.udpIn <-- at.out++;

        rtcp.udpOut --> at.in++;
        rtcp.udpIn <-- at.out++;

        rtp.rtcpOut --> IdealChannel --> rtcp.rtpIn;
        rtcp.rtpOut --> IdealChannel --> rtp.rtcpIn;
}