mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Improve T.38 negotiation by exchanging session parameters between application and channel.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@203699 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -854,7 +854,8 @@ static enum ast_bridge_result local_bridge_loop(struct ast_channel *c0, struct a
|
||||
(fr->subclass == AST_CONTROL_UNHOLD) ||
|
||||
(fr->subclass == AST_CONTROL_VIDUPDATE) ||
|
||||
(fr->subclass == AST_CONTROL_T38) ||
|
||||
(fr->subclass == AST_CONTROL_SRCUPDATE)) {
|
||||
(fr->subclass == AST_CONTROL_SRCUPDATE) ||
|
||||
(fr->subclass == AST_CONTROL_T38_PARAMETERS)) {
|
||||
/* If we are going on hold, then break callback mode and P2P bridging */
|
||||
if (fr->subclass == AST_CONTROL_HOLD) {
|
||||
if (instance0->engine->local_bridge) {
|
||||
@@ -1073,7 +1074,8 @@ static enum ast_bridge_result remote_bridge_loop(struct ast_channel *c0, struct
|
||||
(fr->subclass == AST_CONTROL_UNHOLD) ||
|
||||
(fr->subclass == AST_CONTROL_VIDUPDATE) ||
|
||||
(fr->subclass == AST_CONTROL_T38) ||
|
||||
(fr->subclass == AST_CONTROL_SRCUPDATE)) {
|
||||
(fr->subclass == AST_CONTROL_SRCUPDATE) ||
|
||||
(fr->subclass == AST_CONTROL_T38_PARAMETERS)) {
|
||||
if (fr->subclass == AST_CONTROL_HOLD) {
|
||||
/* If we someone went on hold we want the other side to reinvite back to us */
|
||||
if (who == c0) {
|
||||
|
Reference in New Issue
Block a user