[asterisk-bugs] [JIRA] (ASTERISK-30281) chan_rtp: Local address being used before being set
Asterisk Team (JIRA)
noreply at issues.asterisk.org
Thu Dec 15 07:05:56 CST 2022
[ https://issues.asterisk.org/jira/browse/ASTERISK-30281?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Asterisk Team updated ASTERISK-30281:
-------------------------------------
Target Release Version/s: 20.1.0
> chan_rtp: Local address being used before being set
> ---------------------------------------------------
>
> Key: ASTERISK-30281
> URL: https://issues.asterisk.org/jira/browse/ASTERISK-30281
> Project: Asterisk
> Issue Type: Bug
> Security Level: None
> Components: Channels/chan_rtp
> Affects Versions: 18.15.0, 20.0.0
> Reporter: George Joseph
> Assignee: George Joseph
> Target Release: 18.16.0, 20.1.0
>
>
> {code}
> pbx_builtin_setvar_helper(chan, "UNICASTRTP_LOCAL_ADDRESS",...);
> ast_rtp_instance_get_local_address(instance, &local_address);
> pbx_builtin_setvar_helper(chan, "UNICASTRTP_LOCAL_PORT",...);
> {code}
> should be
> {code}
> ast_rtp_instance_get_local_address(instance, &local_address);
> pbx_builtin_setvar_helper(chan, "UNICASTRTP_LOCAL_ADDRESS",...);
> pbx_builtin_setvar_helper(chan, "UNICASTRTP_LOCAL_PORT",...);
> {code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)
More information about the asterisk-bugs
mailing list