mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
Merge "chan_sip.c: Suppress T.38 SDP c= line if addr is the same."
This commit is contained in:
@@ -13447,7 +13447,7 @@ static enum sip_result add_sdp(struct sip_request *resp, struct sip_pvt *p, int
|
||||
|
||||
ast_str_append(&m_modem, 0, "m=image %d udptl t38\r\n", ast_sockaddr_port(&udptldest));
|
||||
|
||||
if (ast_sockaddr_cmp(&udptldest, &dest)) {
|
||||
if (ast_sockaddr_cmp_addr(&udptldest, &dest)) {
|
||||
ast_str_append(&m_modem, 0, "c=IN %s %s\r\n",
|
||||
(ast_sockaddr_is_ipv6(&udptldest) && !ast_sockaddr_is_ipv4_mapped(&udptldest)) ?
|
||||
"IP6" : "IP4", ast_sockaddr_stringify_addr_remote(&udptldest));
|
||||
|
Reference in New Issue
Block a user