aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-20 23:12:55 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-20 23:12:55 +0000
commit5bbadf623ae3480afc37eb9f139bc2da451245c8 (patch)
tree3f35dd8d159b19b6405028ec0e30fc893158e73e /channels
parent25b16553688333d42933cd8ee2e04f29d6a85b10 (diff)
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) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@55697 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index f12f81ce7..1c4189cea 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1925,16 +1925,14 @@ static void build_via(struct sip_pvt *p)
*/
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;