Summary: | ASTERISK-30281: chan_rtp: Local address being used before being set | ||
Reporter: | George Joseph (gjoseph) | Labels: | |
Date Opened: | 2022-11-02 07:19:45 | Date Closed: | 2022-11-02 10:45:20 |
Priority: | Minor | Regression? | |
Status: | Closed/Complete | Components: | Channels/chan_rtp |
Versions: | 18.15.0 20.0.0 | Frequency of Occurrence | |
Related Issues: | |||
Environment: | Attachments: | ||
Description: | {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} | ||
Comments: | By: Friendly Automation (friendly-automation) 2022-11-02 10:45:22.333-0500 Change 19526 merged by Friendly Automation: chan_rtp: Make usage of ast_rtp_instance_get_local_address clearer [https://gerrit.asterisk.org/c/asterisk/+/19526|https://gerrit.asterisk.org/c/asterisk/+/19526] By: Friendly Automation (friendly-automation) 2022-11-02 10:45:26.137-0500 Change 19525 merged by Friendly Automation: chan_rtp: Make usage of ast_rtp_instance_get_local_address clearer [https://gerrit.asterisk.org/c/asterisk/+/19525|https://gerrit.asterisk.org/c/asterisk/+/19525] By: Friendly Automation (friendly-automation) 2022-11-02 10:57:34.309-0500 Change 19465 merged by Joshua Colp: chan_rtp: Make usage of ast_rtp_instance_get_local_address clearer [https://gerrit.asterisk.org/c/asterisk/+/19465|https://gerrit.asterisk.org/c/asterisk/+/19465] |