/external/srtp/include/ |
srtp.h | 58 * @brief libSRTP provides functions for protecting RTP and RTCP. See 217 crypto_policy_t rtcp; /**< SRTCP crypto policy. */ member in struct:srtp_policy_t 244 * RTCP destination transport addresses, using the RTP/SAVP (Secure 457 * structure to the SRTP default policy for RTCP protection. 462 * crypto_policy_t at location p to the SRTP default policy for RTCP 658 * structure to the appropriate value for RTCP based on an srtp_profile_t 663 * sets the crypto_policy_t at location policy to the policy for RTCP 719 * @defgroup SRTCP Secure RTCP 722 * @brief Secure RTCP functions are used to protect RTCP traffic [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
channel.cc | 64 static const char* PacketType(bool rtcp) { 65 return (!rtcp) ? "RTP" : "RTCP"; 68 static bool ValidPacket(bool rtcp, const talk_base::Buffer* packet) { 71 packet->length() >= (!rtcp ? kMinRtpPacketLen : kMinRtcpPacketLen) && 122 FlushRtcpMessages(); // Send any outstanding RTCP packets. 242 // When using RTCP multiplexing we might get RTCP packets on the RTP 243 // transport. We feed RTP traffic into the demuxer to determine if it is RTCP. 244 bool rtcp = (channel == rtcp_transport_channel_ | local [all...] |
channelmanager.cc | 66 bool rtcp, VoiceChannel* voice_channel) 69 rtcp(rtcp), 74 bool rtcp; member in struct:cricket::CreationParams 294 BaseSession* session, const std::string& content_name, bool rtcp) { 295 CreationParams params(session, content_name, rtcp, NULL); 300 BaseSession* session, const std::string& content_name, bool rtcp) { 311 session, content_name, rtcp); 338 BaseSession* session, const std::string& content_name, bool rtcp, 340 CreationParams params(session, content_name, rtcp, voice_channel) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
channel.h | 82 const std::string& content_name, bool rtcp); 249 bool rtcp() const { return rtcp_; } function in class:cricket::BaseChannel 277 bool SendPacket(bool rtcp, talk_base::Buffer* packet, 279 virtual bool WantsPacket(bool rtcp, talk_base::Buffer* packet); 280 void HandlePacket(bool rtcp, talk_base::Buffer* packet, 299 // |rtcp_channel| indicates whether to set up the RTP or RTCP filter. 302 bool SetDtlsSrtpCiphers(TransportChannel *tc, bool rtcp); 380 const std::string& content_name, bool rtcp); 499 const std::string& content_name, bool rtcp, 608 bool rtcp); [all...] |
call.cc | 298 bool rtcp = false; local 301 session, data_offer->name, rtcp, data_channel_type); [all...] |
channel_unittest.cc | 168 enum Flags { RTCP = 0x1, RTCP_MUX = 0x2, SECURE = 0x4, SSRC_MUX = 0x8, 223 (flags1 & RTCP) != 0)); 225 (flags2 & RTCP) != 0)); 278 (flags & RTCP) != 0)); 280 (flags & RTCP) != 0)); 310 bool rtcp) { 312 thread, engine, ch, session, cricket::CN_AUDIO, rtcp); 470 // Set SSRC in the rtcp packet copy. 616 // Test that SetLocalContent and SetRemoteContent properly set RTCP 619 CreateChannels(RTCP, RTCP) 1785 TransportChannel* rtcp = channel1_->rtcp_transport_channel(); local [all...] |
channel.cc | 360 static const char* PacketType(bool rtcp) { 361 return (!rtcp) ? "RTP" : "RTCP"; 364 static bool ValidPacket(bool rtcp, const talk_base::Buffer* packet) { 367 packet->length() >= (!rtcp ? kMinRtpPacketLen : kMinRtcpPacketLen) && 389 const std::string& content_name, bool rtcp) 395 rtcp_(rtcp), 416 FlushRtcpMessages(); // Send any outstanding RTCP packets. 433 if (rtcp() && rtcp_transport_channel == NULL) { 455 // Both RTP and RTCP channels are set, we can call SetInterface o 621 bool rtcp = PacketIsRtcp(channel, data, len); local [all...] |