Simple Module RTCP

Package: inet.transport.rtp
File: src/transport/rtp/RTCP.ned

C++ definition

RTCP end system.

RTCP

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.

Used in compound modules:

Name Type Description
RTPLayer compound module (no description)

Properties:

Name Value Description
display i=block/control

Gates:

Name Direction Size Description
rtpIn input
udpIn input
rtpOut output
udpOut output

Source code:

//
// RTCP end system.
//
simple RTCP
{
    parameters:
        @display("i=block/control");
    gates:
        input rtpIn @labels(RTPInnerPacket);
        input udpIn @labels(UDPControlInfo/up);
        output rtpOut @labels(RTPInnerPacket);
        output udpOut @labels(UDPControlInfo/down);
}