[asterisk-commits] file: trunk r86470 - in /trunk: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Oct 19 10:10:24 CDT 2007
Author: file
Date: Fri Oct 19 10:10:24 2007
New Revision: 86470
URL: http://svn.digium.com/view/asterisk?view=rev&rev=86470
Log:
Merged revisions 86469 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r86469 | file | 2007-10-19 12:08:12 -0300 (Fri, 19 Oct 2007) | 4 lines
Set port number in received as information for registrations as well.
(closes issue #11028)
Reported by: brad-x
........
Modified:
trunk/ (props changed)
trunk/channels/chan_sip.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=86470&r1=86469&r2=86470
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Fri Oct 19 10:10:24 2007
@@ -8212,9 +8212,10 @@
}
/* Copy back Call-ID in case create_addr changed it */
ast_string_field_set(r, callid, p->callid);
- if (r->portno)
+ if (r->portno) {
p->sa.sin_port = htons(r->portno);
- else /* Set registry port to the port set from the peer definition/srv or default */
+ p->recv.sin_port = htons(r->portno);
+ } else /* Set registry port to the port set from the peer definition/srv or default */
r->portno = ntohs(p->sa.sin_port);
ast_set_flag(&p->flags[0], SIP_OUTGOING); /* Registration is outgoing call */
r->call = dialog_ref(p); /* Save pointer to SIP dialog */
More information about the asterisk-commits
mailing list