--- channels/chan_iax2.c.orig 2013-08-21 13:04:18.352387202 +0200 +++ channels/chan_iax2.c 2013-08-22 09:32:25.052386668 +0200 @@ -12122,11 +12122,7 @@ } /* Queue up a new task to handle no reply */ - /* If the host is already unreachable then use the unreachable interval instead */ - if (peer->lastms < 0) - peer->pokeexpire = iax2_sched_add(sched, peer->pokefreqnotok, iax2_poke_noanswer, peer_ref(peer)); - else - peer->pokeexpire = iax2_sched_add(sched, DEFAULT_MAXMS * 2, iax2_poke_noanswer, peer_ref(peer)); + peer->pokeexpire = iax2_sched_add(sched, peer->maxms * 2, iax2_poke_noanswer, peer_ref(peer)); if (peer->pokeexpire == -1) peer_unref(peer);