Package: inet.transportlayer.rtp
Rtcp
simple moduleRTCP end system.
Used in compound modules
| Name | Type | Description |
|---|---|---|
| RtpHost | compound module | (no description) |
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| interfaceTableModule | string |
The path to the InterfaceTable module |
Properties
| Name | Value | Description |
|---|---|---|
| display | i=block/control |
Gates
| Name | Direction | Size | Description |
|---|---|---|---|
| rtpIn | input | ||
| udpIn | input | ||
| rtpOut | output | ||
| udpOut | output |
Signals
| Name | Type | Unit |
|---|---|---|
| packetReceived | cPacket |
Statistics
| Name | Title | Source | Record | Unit | Interpolation Mode |
|---|---|---|---|---|---|
| packetReceived | packets received | packetReceived | count, sum(packetBytes), vector(packetBytes) | none | |
| endToEndDelay | end-to-end delay | dataAge(packetReceived) | histogram, vector | s | none |
Source code
// // RTCP end system. // simple Rtcp { parameters: string interfaceTableModule; // The path to the InterfaceTable module @display("i=block/control"); @signal[packetReceived](type=cPacket); @statistic[packetReceived](title="packets received"; source=packetReceived; record=count,"sum(packetBytes)","vector(packetBytes)"; interpolationmode=none); @statistic[endToEndDelay](title="end-to-end delay"; source="dataAge(packetReceived)"; unit=s; record=histogram,vector; interpolationmode=none); gates: input rtpIn @labels(RtpInnerPacket); input udpIn @labels(UdpControlInfo/up); output rtpOut @labels(RtpInnerPacket); output udpOut @labels(UdpControlInfo/down); }File: src/inet/transportlayer/rtp/Rtcp.ned