aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 17:10:03 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 17:10:03 +0000
commit487d264c99349c74c2895fcf2313dad878f0b5a8 (patch)
tree71bab2e3598472e6b731c1798aaa818d7d82a260
parent38f484f1798acaa5f8de03ab5ac55ca8980695b4 (diff)
Merged revisions 89032 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r89032 | file | 2007-11-06 13:08:05 -0400 (Tue, 06 Nov 2007) | 4 lines 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: http://svn.digium.com/svn/asterisk/trunk@89034 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 1aff65fc8..3046ea3d0 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -16886,7 +16886,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 */