[asterisk-bugs] [JIRA] (ASTERISK-27022) res_rtp_asterisk: Incorrect SSRC change for RTCP component
Joshua Colp (JIRA)
noreply at issues.asterisk.org
Fri Jun 2 11:05:58 CDT 2017
[ https://issues.asterisk.org/jira/browse/ASTERISK-27022?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Joshua Colp updated ASTERISK-27022:
-----------------------------------
Status: Open (was: Triage)
> res_rtp_asterisk: Incorrect SSRC change for RTCP component
> ----------------------------------------------------------
>
> Key: ASTERISK-27022
> URL: https://issues.asterisk.org/jira/browse/ASTERISK-27022
> Project: Asterisk
> Issue Type: Bug
> Security Level: None
> Components: Resources/res_rtp_asterisk
> Affects Versions: 13.16.0, 14.4.0
> Environment: N/A
> Reporter: Michael Walton
> Severity: Minor
>
> Found by code inspection in function ast_rtp_change_source(). The following code snippet refers:
> {code:title=res_rtp_asterisk.c|borderStyle=solid}
> if (srtp) {
> ast_debug(3, "Changing ssrc for SRTP from %u to %u\n", rtp->ssrc, ssrc);
> res_srtp->change_source(srtp, rtp->ssrc, ssrc);
> if (rtcp_srtp != srtp) {
> res_srtp->change_source(srtp, rtp->ssrc, ssrc);
> }
> }
> {code}
> The third last line should I think be:
> {code:title=res_rtp_asterisk.c|borderStyle=solid}
> res_srtp->change_source(rtcp_srtp, rtp->ssrc, ssrc);
> {code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)
More information about the asterisk-bugs
mailing list