Bayonne2 / Common C++ 2 Framework
|
Struct representing general RTCP packet headers as they are sent through the network. More...
#include <rtcppkt.h>
Public Types | |
enum | Type { tSR = 200, tRR, tSDES, tBYE, tAPP, tFIR = 192, tNACK = 193, tXR } |
rtp.h cc++/rtp.h More... | |
Public Member Functions | |
uint32 | getLength () const |
Get the packet length specified in its header, in octets and in host order. More... | |
uint32 | getSSRC () const |
Get the SSRC identifier specified in the packet header, in host order. More... | |
Data Fields | |
RTCPFixedHeader | fh |
Fixed RTCP header. More... | |
union { | |
SendReport SR | |
RecvReport RR | |
SDESChunk SDES | |
BYEPacket BYE | |
APPPacket APP | |
NACKPacket NACK | |
FIRPacket FIR | |
} | info |
Union for SR, RR, SDES, BYE and APP. More... | |
Struct representing general RTCP packet headers as they are sent through the network.
This struct consists of a fixed header, always at the beginning of any RTCP packet, and a union for all the RTCP packet types supported.
rtp.h cc++/rtp.h
RTCP packet types. They are registered with IANA.
|
inline |
|
inline |
RTCPFixedHeader RTCPCompoundHandler::RTCPPacket::fh |
union { ... } RTCPCompoundHandler::RTCPPacket::info |
Union for SR, RR, SDES, BYE and APP.
NACKPacket RTCPCompoundHandler::RTCPPacket::NACK |
RecvReport RTCPCompoundHandler::RTCPPacket::RR |
SendReport RTCPCompoundHandler::RTCPPacket::SR |