[asterisk-commits] file: trunk r55697 - in /trunk: ./
channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Feb 20 16:12:56 MST 2007
Author: file
Date: Tue Feb 20 17:12:55 2007
New Revision: 55697
URL: http://svn.digium.com/view/asterisk?view=rev&rev=55697
Log:
Merged revisions 55688 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r55688 | file | 2007-02-20 18:08:45 -0500 (Tue, 20 Feb 2007) | 2 lines
Don't test our own address against the localnet settings. At least one person has had issues as a result of this from #7051 so I'm reversing it. (issue #8821 reported by kokoskarokoska)
........
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=55697&r1=55696&r2=55697
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Tue Feb 20 17:12:55 2007
@@ -1925,16 +1925,14 @@
*/
static enum sip_result ast_sip_ouraddrfor(struct in_addr *them, struct in_addr *us)
{
- struct sockaddr_in theirs, ours;
+ struct sockaddr_in theirs;
/* Get our local information */
ast_ouraddrfor(them, us);
theirs.sin_addr = *them;
- ours.sin_addr = *us;
if (localaddr && externip.sin_addr.s_addr &&
- ast_apply_ha(localaddr, &theirs) &&
- !ast_apply_ha(localaddr, &ours)) {
+ ast_apply_ha(localaddr, &theirs)) {
if (externexpire && time(NULL) >= externexpire) {
struct ast_hostent ahp;
struct hostent *hp;
More information about the asterisk-commits
mailing list