summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2017-04-14 17:32:22 -0500
committerRichard Mudgett <rmudgett@digium.com>2017-04-14 17:32:22 -0500
commita3e623dd70c98d490d70a55f76b471c48f0d4283 (patch)
treeb1cc172892bfdee8ce33ac75e10d05599a7b1cd6 /bridges
parent7819f95791fe0ca0e0cdc417e2687a5900444053 (diff)
Revert "bridging: Ensure successful T.38 negotation"
This reverts commit 7819f95791fe0ca0e0cdc417e2687a5900444053. Change-Id: Ib91a7e6c9856f5f41329e42f40ba2394fee861a4
Diffstat (limited to 'bridges')
-rw-r--r--bridges/bridge_simple.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/bridges/bridge_simple.c b/bridges/bridge_simple.c
index 158c44353..35544f84f 100644
--- a/bridges/bridge_simple.c
+++ b/bridges/bridge_simple.c
@@ -56,19 +56,6 @@ static int simple_bridge_join(struct ast_bridge *bridge, struct ast_bridge_chann
return 0;
}
- /* Request resend of T.38 negotiation if in progress and the other leg not yet T.38
- */
- if (ast_channel_get_t38_state(c0) == T38_STATE_NEGOTIATING && ast_channel_get_t38_state(c1) == T38_STATE_UNKNOWN) {
- struct ast_control_t38_parameters parameters = { .request_response = AST_T38_REQUEST_PARMS, };
- ast_debug(3, "Sending T.38 param renegotiation to first channel %s.\n", ast_channel_name(c0));
- ast_indicate_data(c0, AST_CONTROL_T38_PARAMETERS, &parameters, sizeof(parameters));
- }
- if (ast_channel_get_t38_state(c1) == T38_STATE_NEGOTIATING && ast_channel_get_t38_state(c0) == T38_STATE_UNKNOWN) {
- struct ast_control_t38_parameters parameters = { .request_response = AST_T38_REQUEST_PARMS, };
- ast_debug(3, "Sending T.38 param renegotiation to second channel %s.\n", ast_channel_name(c1));
- ast_indicate_data(c1, AST_CONTROL_T38_PARAMETERS, &parameters, sizeof(parameters));
- }
-
return ast_channel_make_compatible(c0, c1);
}