[asterisk-commits] file: branch 12 r424155 - /branches/12/res/res_pjsip_sdp_rtp.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 30 06:39:19 CDT 2014
Author: file
Date: Tue Sep 30 06:39:13 2014
New Revision: 424155
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=424155
Log:
res_pjsip_sdp_rtp: Don't place an extra whitespace before 'rport' and don't put IPv6 addresses in brackets.
#SIPit31
Modified:
branches/12/res/res_pjsip_sdp_rtp.c
Modified: branches/12/res/res_pjsip_sdp_rtp.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/res/res_pjsip_sdp_rtp.c?view=diff&rev=424155&r1=424154&r2=424155
==============================================================================
--- branches/12/res/res_pjsip_sdp_rtp.c (original)
+++ branches/12/res/res_pjsip_sdp_rtp.c Tue Sep 30 06:39:13 2014
@@ -347,7 +347,7 @@
struct ast_str *attr_candidate = ast_str_create(128);
ast_str_set(&attr_candidate, -1, "%s %u %s %d %s ", candidate->foundation, candidate->id, candidate->transport,
- candidate->priority, ast_sockaddr_stringify_host(&candidate->address));
+ candidate->priority, ast_sockaddr_stringify_addr_remote(&candidate->address));
ast_str_append(&attr_candidate, -1, "%s typ ", ast_sockaddr_stringify_port(&candidate->address));
switch (candidate->type) {
@@ -363,7 +363,7 @@
}
if (!ast_sockaddr_isnull(&candidate->relay_address)) {
- ast_str_append(&attr_candidate, -1, " raddr %s rport ", ast_sockaddr_stringify_host(&candidate->relay_address));
+ ast_str_append(&attr_candidate, -1, " raddr %s rport", ast_sockaddr_stringify_addr_remote(&candidate->relay_address));
ast_str_append(&attr_candidate, -1, " %s", ast_sockaddr_stringify_port(&candidate->relay_address));
}
More information about the asterisk-commits
mailing list