aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-13 21:08:58 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-13 21:08:58 +0000
commit79b9b0936543743e14406c903c114d0499201bff (patch)
treeedc65a7c363e27fd58eb7ce2deb64bf26b63a109 /channels
parent3006400b15d68f17ddb13f68b9351258e546a550 (diff)
Correctly end locally ended calls.
(closes issue #12170) Reported by: pj Patches: 20080702__issue12170_clear_pendinginvite.diff uploaded by bbryant (license 36) Tested by: bbryant, pabelanger git-svn-id: http://svn.digium.com/svn/asterisk/trunk@137532 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index d2bcf2652..65f45b3c2 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -15178,7 +15178,10 @@ static void handle_response_invite(struct sip_pvt *p, int resp, char *rest, stru
/* Final response, not 200 ? */
if (resp >= 300 && (p->invitestate == INV_CALLING || p->invitestate == INV_PROCEEDING || p->invitestate == INV_EARLY_MEDIA ))
p->invitestate = INV_COMPLETED;
-
+
+ /* Final response, clear out pending invite */
+ if ((resp == 200 || resp >= 300) && p->pendinginvite && seqno == p->pendinginvite)
+ p->pendinginvite = 0;
switch (resp) {
case 100: /* Trying */