]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
If dnsmgr is in use, and no DNS servers are available when Asterisk first
authorRussell Bryant <russell@russellbryant.com>
Fri, 24 Aug 2007 21:22:50 +0000 (21:22 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 24 Aug 2007 21:22:50 +0000 (21:22 +0000)
starts, then don't give up on poking peers.  Allow the poke to get rescheduled
so that it will work once the dnsmgr is able to resolve the host.
(closes issue #10521, patch by jamesgolovich)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@80849 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_iax2.c

index 214432400f53fc66d22f4e8208cac9051f7d22b9..1793e1fdf58df125f5d7f4f322b2fe0aa0cb81f3 100644 (file)
@@ -8490,8 +8490,8 @@ static int iax2_poke_peer_cb(void *obj, void *arg, int flags)
 
 static int iax2_poke_peer(struct iax2_peer *peer, int heldcall)
 {
-       if (!peer->maxms || !peer->addr.sin_addr.s_addr) {
-               /* IF we have no IP, or this isn't to be monitored, return
+       if (!peer->maxms || (!peer->addr.sin_addr.s_addr && !peer->dnsmgr)) {
+               /* IF we have no IP without dnsmgr, or this isn't to be monitored, return
                  immediately after clearing things out */
                peer->lastms = 0;
                peer->historicms = 0;