HomeSort by relevance Sort by last modified time
    Searched refs:rtcp (Results 1 - 12 of 12) sorted by null

  /external/srtp/test/
rtpw.c 315 crypto_policy_set_rtcp_default(&policy.rtcp);
319 crypto_policy_set_rtcp_default(&policy.rtcp);
323 crypto_policy_set_rtcp_default(&policy.rtcp);
336 policy.rtcp.sec_serv = sec_serv_none; /* we don't do RTCP anyway */
368 * specification, since RTCP authentication is required. However,
381 policy.rtcp.cipher_type = NULL_CIPHER;
382 policy.rtcp.cipher_key_len = 0;
383 policy.rtcp.auth_type = NULL_AUTH;
384 policy.rtcp.auth_key_len = 0
    [all...]
dtls_srtp_driver.c 183 err = crypto_policy_set_from_profile_for_rtcp(&policy.rtcp, profile);
srtp_driver.c 320 crypto_policy_set_rtcp_default(&policy.rtcp);
993 "# rtcp cipher: %s\r\n"
994 "# rtcp auth: %s\r\n"
995 "# rtcp services: %s\r\n"
1019 "# rtcp cipher: %s\r\n"
1020 "# rtcp auth: %s\r\n"
1021 "# rtcp services: %s\r\n"
1182 crypto_policy_set_rtcp_default(&policy.rtcp);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.h 49 // the actual RTP or RTCP packet.
67 RtpDumpPacket(const void* d, size_t s, uint32 elapsed, bool rtcp)
69 is_rtcp(rtcp) {
83 bool is_rtcp; // True if the data below is a RTCP packet.
84 std::vector<uint8> data; // The actual RTP or RTCP packet.
119 // handle both RTP dump and RTCP dump. We assume that the dump does not mix
120 // RTP packets and RTCP packets.
168 // Write a RTP or RTCP packet. The parameters data points to the packet and
193 uint32 elapsed, bool rtcp);
channelmanager.h 106 BaseSession* session, const std::string& content_name, bool rtcp);
112 BaseSession* session, const std::string& content_name, bool rtcp,
167 BaseSession* session, const std::string& content_name, bool rtcp);
170 BaseSession* session, const std::string& content_name, bool rtcp,
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...]
srtpfilter.cc 362 crypto_policy_set_aes_cm_128_hmac_sha1_80(&policy.rtcp);
365 crypto_policy_set_aes_cm_128_hmac_sha1_80(&policy.rtcp); // rtcp still 80
392 rtcp_auth_tag_len_ = policy.rtcp.auth_tag_len;
channel.h 164 bool SendPacket(bool rtcp, talk_base::Buffer* packet);
165 void HandlePacket(bool rtcp, talk_base::Buffer* packet);
234 // Media sinks to handle the received or sent RTP/RTCP packets. These are
258 const std::string& content_name, bool rtcp);
369 const std::string& content_name, bool rtcp,
rtpdump.cc 116 buf.ReadUInt16(&data_len); // data.size() for RTP, 0 for RTCP.
121 // Read the actual RTP or RTCP packet.
295 const void* data, size_t data_len, uint32 elapsed, bool rtcp) {
311 buf.WriteUInt16(static_cast<uint16>(rtcp ? 0 : data_len));
318 // Write the actual RTP or RTCP packet.
  /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/srtp/srtp/
srtp.c 84 * This function allocates the stream context, rtp and rtcp ciphers
123 * ...and now the RTCP-specific initialization - first, allocate
126 stat = crypto_kernel_alloc_cipher(p->rtcp.cipher_type,
128 p->rtcp.cipher_key_len);
134 stat = crypto_kernel_alloc_auth(p->rtcp.auth_type,
136 p->rtcp.auth_key_len,
137 p->rtcp.auth_tag_len);
196 * deallocate rtcp cipher, if it is not the same as that in
206 * deallocate rtcp auth function, if it is not the same as that in
430 debug_print(mod_srtp, "found aes_icm, generating rtcp salt", NULL)
    [all...]

Completed in 80 milliseconds