Packet RTCPPacket

File: src/inet/transportlayer/rtp/RTCPPacket1.msg

C++ definition

(no description)

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.

Known subclasses:

Name Type Description
RTCPByePacket packet (no description)
RTCPReceiverReportPacket packet (no description)
RTCPSDESPacket packet (no description)

Fields:

Name Type Description
byteLength
version int8
padding bool
count short
packetType short
rtcpLength int

Source code:

packet RTCPPacket
{
    byteLength = 4;
    @customize(true);  // see the generated C++ header for more info
    int8 version = 2;
    bool padding = 0;
    short count = 0;
    short packetType @enum(RTCPPacketType) = RTCP_PT_UNDEF;
    abstract int rtcpLength;
}