Namespace inet::rtp
RtpSenderStatus
enumMessages of type RtpSenderStatusMessage are used to send information from an rtp sender module to the application. Within this class a status string is defined in which the information is stored. This can be "PLAYING", "STOPPED" or "FINISHED". If a message must provide more information than just a string, a new class defining this parameter can derived.
Source code
// // Messages of type ~RtpSenderStatusMessage are used to send information // from an rtp sender module to the application. Within this class a status // string is defined in which the information is stored. This can be "PLAYING", // "STOPPED" or "FINISHED". // If a message must provide more information than just a string, a new class // defining this parameter can derived. // enum RtpSenderStatus { RTP_SENDER_STATUS_PLAYING = 1; RTP_SENDER_STATUS_FINISHED = 2; RTP_SENDER_STATUS_STOPPED = 3; RTP_SENDER_STATUS_PAUSED = 4; }File: src/inet/transportlayer/rtp/RtpSenderStatusMessage.msg