From: Joshua Colp Date: Tue, 6 Nov 2007 17:08:05 +0000 (+0000) Subject: Make it so that if a peer is determined to be unreachable using qualify their devices... X-Git-Tag: 1.4.14~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cac21aa19b677f0cb9db4ce8d6eae5ecf2c4365a;p=thirdparty%2Fasterisk.git Make it so that if a peer is determined to be unreachable using qualify their devicestate will report back unavailable. (closes issue #11006) Reported by: pj git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@89032 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 23fe8f907d..e444c1fcff 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -15652,7 +15652,7 @@ static int sip_devicestate(void *data) else if (p->call_limit && p->inUse) /* Not busy, but we do have a call */ res = AST_DEVICE_INUSE; - else if (p->maxms && (p->lastms > p->maxms)) + else if (p->maxms && ((p->lastms > p->maxms) || (p->lastms < 0))) /* We don't have a call. Are we reachable at all? Requires qualify= */ res = AST_DEVICE_UNAVAILABLE; else /* Default reply if we're registered and have no other data */