mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-23 07:54:50 -07:00
A small change to fix iax2 native bridging.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115669 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3766,8 +3766,11 @@ static enum ast_bridge_result iax2_bridge(struct ast_channel *c0, struct ast_cha
|
||||
struct timeval waittimer = {0, 0}, tv;
|
||||
|
||||
/* We currently do not support native bridging if a timeoutms value has been provided */
|
||||
if (timeoutms)
|
||||
if (timeoutms > 0) {
|
||||
return AST_BRIDGE_FAILED;
|
||||
}
|
||||
|
||||
timeoutms = 0;
|
||||
|
||||
lock_both(callno0, callno1);
|
||||
if (!iaxs[callno0] || !iaxs[callno1]) {
|
||||
|
||||
Reference in New Issue
Block a user