mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-03 05:23:26 -07:00
Try to fix attended transfers.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@116848 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+7
-1
@@ -11161,12 +11161,18 @@ static struct sip_pvt *get_sip_pvt_byid_locked(const char *callid, const char *t
|
||||
sip_pvt_ptr->theirtag, sip_pvt_ptr->tag);
|
||||
return 0;
|
||||
}
|
||||
sip_pvt_unlock(sip_pvt_ptr);
|
||||
|
||||
if (totag)
|
||||
ast_debug(4, "Matched %s call - their tag is %s Our tag is %s\n",
|
||||
ast_test_flag(&sip_pvt_ptr->flags[0], SIP_OUTGOING) ? "OUTGOING": "INCOMING",
|
||||
sip_pvt_ptr->theirtag, sip_pvt_ptr->tag);
|
||||
|
||||
/* deadlock avoidance... */
|
||||
while (sip_pvt_ptr->owner && ast_channel_trylock(sip_pvt_ptr->owner)) {
|
||||
sip_pvt_unlock(sip_pvt_ptr);
|
||||
usleep(1);
|
||||
sip_pvt_lock(sip_pvt_ptr);
|
||||
}
|
||||
}
|
||||
|
||||
return sip_pvt_ptr;
|
||||
|
||||
Reference in New Issue
Block a user