qiupin / doubango

Automatically exported from code.google.com/p/doubango
0 stars 0 forks source link

ver985 bug #309

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
bug fix
--- tinyDAV/src/tdav_session_av.c       (revision 985)
+++ tinyDAV/src/tdav_session_av.c       (working copy)
@@ -94,8 +94,8 @@
        RTP_PROFILE_SAVP = (RTP_PROFILE_AVP | RTP_PROFILE_SECURE_SDES),
        RTP_PROFILE_SAVPF = (RTP_PROFILE_AVPF | RTP_PROFILE_SECURE_SDES),

-       RTP_PROFILE_UDP_TLS_RTP_SAVP = (RTP_PROFILE_AVP | 
RTP_PROFILE_SECURE_DTLS),
-       RTP_PROFILE_UDP_TLS_RTP_SAVPF = (RTP_PROFILE_AVPF | 
RTP_PROFILE_SECURE_DTLS)
+       RTP_PROFILE_UDP_TLS_RTP_SAVP = (RTP_PROFILE_SAVP | 
RTP_PROFILE_SECURE_DTLS),
+       RTP_PROFILE_UDP_TLS_RTP_SAVPF = (RTP_PROFILE_SAVPF | 
RTP_PROFILE_SECURE_DTLS)

Original issue reported on code.google.com by soultelp...@gmail.com on 16 Aug 2013 at 8:19

GoogleCodeExporter commented 9 years ago
(RTP_PROFILE_SAVP | RTP_PROFILE_SECURE_DTLS) = AVP + SDES + DTLS = Not correct.
(RTP_PROFILE_AVP | RTP_PROFILE_SECURE_DTLS) = AVP + DTLS = Correct.

Original comment by boss...@yahoo.fr on 21 Aug 2013 at 3:39