SWITCH_DECLARE(const char *) switch_core_media_get_zrtp_hash(switch_core_session_t *session, switch_media_type_t type, switch_bool_t local);
SWITCH_DECLARE(void) switch_core_media_pass_zrtp_hash2(switch_core_session_t *aleg_session, switch_core_session_t *bleg_session);
SWITCH_DECLARE(int) switch_core_media_toggle_hold(switch_core_session_t *session, int sendonly);
+SWITCH_DECLARE(void) switch_core_media_reset_t38(switch_core_session_t *session);
SWITCH_DECLARE(void) switch_core_media_copy_t38_options(switch_t38_options_t *t38_options, switch_core_session_t *session);
SWITCH_DECLARE(uint8_t) switch_core_media_negotiate_sdp(switch_core_session_t *session, const char *r_sdp, uint8_t *proceed, switch_sdp_type_t sdp_type);
SWITCH_DECLARE(switch_status_t) switch_core_media_set_video_codec(switch_core_session_t *session, int force);
CF_APP_T38 = (1 << 1),
CF_APP_T38_REQ = (1 << 2),
CF_APP_T38_FAIL = (1 << 3),
- CF_APP_T38_NEGOTIATED = (1 << 4)
+ CF_APP_T38_NEGOTIATED = (1 << 4),
+ CF_APP_T38_POSSIBLE = (1 << 5)
} switch_channel_app_flag_t;
}
}
+ switch_channel_set_app_flag_key("T38", channel, CF_APP_T38_POSSIBLE);
+
if (zstr(direction) || strcasecmp(direction, "self")) {
direction = "peer";
}
counter_increment();
-
+ if (app_mode == FUNCTION_GW ||
+ switch_channel_var_true(channel, "fax_enable_t38") ||
+ switch_channel_var_true(channel, "fax_enable_t38_insist")) {
+ switch_channel_set_app_flag_key("T38", channel, CF_APP_T38_POSSIBLE);
+ }
+
pvt = pvt_init(session, app_mode);
switch_channel_set_private(channel, "_fax_pvt", pvt);
/* Destroy the SpanDSP structures */
spanfax_destroy(pvt);
+ switch_channel_clear_app_flag_key("T38", channel, CF_APP_T38_POSSIBLE);
+
/* restore the original codecs over the channel */
switch_core_session_set_read_codec(session, NULL);
switch_channel_set_app_flag_key("T38", peer ? channel : other_channel, CF_APP_TAGGED);
switch_channel_clear_app_flag_key("T38", peer ? other_channel : channel, CF_APP_TAGGED);
+ switch_channel_set_app_flag_key("T38", channel, CF_APP_T38_POSSIBLE);
+ switch_channel_set_app_flag_key("T38", other_channel, CF_APP_T38_POSSIBLE);
+
switch_channel_set_flag(channel, CF_REDIRECT);
switch_channel_set_state(channel, CS_RESET);
switch_codec_implementation_t read_impl = { 0 };
switch_core_session_get_read_impl(session, &read_impl);
+
if (timeout) {
to = switch_epoch_time_now(NULL) + timeout;
}
return SWITCH_STATUS_MEMERR;
}
+ switch_channel_set_app_flag_key("T38", channel, CF_APP_T38_POSSIBLE);
+
if (app) {
cont->app = switch_core_session_strdup(session, app);
}
const char *r_sdp = NULL;
switch_core_session_message_t *msg;
private_object_t *other_tech_pvt = switch_core_session_get_private(other_session);
- switch_channel_t *other_channel = switch_core_session_get_channel(other_session);
+ //switch_channel_t *other_channel = switch_core_session_get_channel(other_session);
if (sip->sip_payload && sip->sip_payload->pl_data &&
sip->sip_content_type && sip->sip_content_type->c_subtype && switch_stristr("sdp", sip->sip_content_type->c_subtype)) {
switch_core_session_rwunlock(other_session);
goto end;
} else if (status > 299) {
- switch_channel_set_private(channel, "t38_options", NULL);
- switch_channel_set_private(other_channel, "t38_options", NULL);
- switch_channel_clear_flag(channel, CF_T38_PASSTHRU);
- switch_channel_clear_flag(other_channel, CF_T38_PASSTHRU);
- switch_channel_clear_app_flag_key("T38", channel, CF_APP_T38);
- switch_channel_clear_app_flag_key("T38", channel, CF_APP_T38_REQ);
- switch_channel_set_app_flag_key("T38", channel, CF_APP_T38_FAIL);
+ switch_core_media_reset_t38(session);
+ switch_core_media_reset_t38(other_session);
} else if (status == 200 && switch_channel_test_flag(channel, CF_T38_PASSTHRU) &&
has_t38 && sip->sip_payload && sip->sip_payload->pl_data) {
switch_t38_options_t *t38_options = switch_core_media_extract_t38_options(session, sip->sip_payload->pl_data);
goto done;
}
- switch_channel_set_flag(tech_pvt->channel, CF_REINVITE);
- switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Reinvite Codec Error!\n");
+ switch_channel_clear_flag(tech_pvt->channel, CF_REINVITE);
+ switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "Reinvite resulted in codec negotiation failure.\n");
is_ok = 0;
}
}
callee_name = "unknown";
}
+ //callee_number = "666";
+
if (data) {
tmp = switch_core_sprintf(sh->pool,
"%s,<sip:%s>;%s;appearance-state=%s;appearance-uri=\"\\\"%s\\\" <sip:%s@%s>\"",
switch_set_flag((&runtime), SCF_RESTART);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Restarting\n");
} else {
+ assert(0);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Shutting down\n");
#ifdef _MSC_VER
fclose(stdin);
engine = &smh->engines[type];
if (type == SWITCH_MEDIA_TYPE_AUDIO && ! switch_channel_test_flag(session->channel, CF_AUDIO)) {
- //switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Reading audio from a non-audio session.\n");
+ switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG1, "%s Reading audio from a non-audio session.\n", switch_channel_get_name(session->channel));
switch_yield(50000);
return SWITCH_STATUS_INUSE;
}
}
}
+static void restore_pmaps(switch_rtp_engine_t *engine)
+{
+ payload_map_t *pmap;
+ int top = 0;
+
+ for (pmap = engine->payload_map; pmap && pmap->allocated; pmap = pmap->next) {
+ pmap->negotiated = 1;
+ if (!top++) pmap->current = 1;
+ }
+}
+
//?
SWITCH_DECLARE(uint8_t) switch_core_media_negotiate_sdp(switch_core_session_t *session, const char *r_sdp, uint8_t *proceed, switch_sdp_type_t sdp_type)
{
switch_channel_set_flag(session->channel, CF_IMAGE_SDP);
if (m->m_port) {
- switch_t38_options_t *t38_options = switch_core_media_process_udptl(session, sdp, m);
-
if (switch_channel_test_app_flag_key("T38", session->channel, CF_APP_T38_NEGOTIATED)) {
fmatch = 1;
goto done;
}
- if (switch_true(switch_channel_get_variable(channel, "refuse_t38"))) {
+ if (switch_channel_var_true(channel, "refuse_t38")) {
switch_channel_clear_app_flag_key("T38", session->channel, CF_APP_T38);
- match = 0;
- goto done;
+ switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "%s T38 REFUSE on %s\n",
+ switch_channel_get_name(channel),
+ sdp_type == SDP_TYPE_RESPONSE ? "response" : "request");
+
+ restore_pmaps(a_engine);
+ fmatch = 0;
+
+ goto t38_done;
} else {
+ switch_t38_options_t *t38_options = switch_core_media_process_udptl(session, sdp, m);
const char *var = switch_channel_get_variable(channel, "t38_passthru");
int pass = switch_channel_test_flag(smh->session->channel, CF_T38_PASSTHRU);
-
-
+
+ switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "%s T38 ACCEPT on %s\n",
+ switch_channel_get_name(channel),
+ sdp_type == SDP_TYPE_RESPONSE ? "response" : "request");
+
if (switch_channel_test_app_flag_key("T38", session->channel, CF_APP_T38)) {
if (proceed) *proceed = 0;
}
pass = 0;
match = 0;
+ fmatch = 0;
goto done;
}
-
+ switch_channel_set_app_flag_key("T38", channel, CF_APP_T38_POSSIBLE);
+ switch_channel_set_app_flag_key("T38", other_channel, CF_APP_T38_POSSIBLE);
+
if (switch_true(switch_channel_get_variable(session->channel, "t38_broken_boolean")) &&
switch_true(switch_channel_get_variable(session->channel, "t38_pass_broken_boolean"))) {
switch_channel_set_variable(other_channel, "t38_broken_boolean", "true");
/* do nothing here, mod_fax will trigger a response (if it's listening =/) */
- fmatch = 1;
+ if (switch_channel_test_app_flag_key("T38", channel, CF_APP_T38_POSSIBLE)) {
+ fmatch = 1;
+ } else {
+
+ fmatch = 0;
+ }
+
+ switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_DEBUG, "%s T38 %s POSSIBLE on %s\n",
+ switch_channel_get_name(channel),
+ fmatch ? "IS" : "IS NOT",
+ sdp_type == SDP_TYPE_RESPONSE ? "response" : "request");
+
+
goto done;
}
} else if (m->m_type == sdp_media_audio && m->m_port && got_audio && got_savp) {
switch_channel_clear_flag(channel, CF_IMAGE_SDP);
}
+ t38_done:
+
if (parser) {
sdp_parser_free(parser);
}
return match || vmatch || tmatch || fmatch;
}
+//?
+SWITCH_DECLARE(void) switch_core_media_reset_t38(switch_core_session_t *session)
+{
+ switch_rtp_engine_t *a_engine;
+ switch_media_handle_t *smh;
+ switch_channel_t *channel = switch_core_session_get_channel(session);
+
+ switch_assert(session);
+
+ if (!(smh = session->media_handle)) {
+ return;
+ }
+
+ a_engine = &smh->engines[SWITCH_MEDIA_TYPE_AUDIO];
+
+ restore_pmaps(a_engine);
+
+ switch_channel_set_private(channel, "t38_options", NULL);
+ switch_channel_clear_flag(channel, CF_T38_PASSTHRU);
+ switch_channel_clear_app_flag_key("T38", channel, CF_APP_T38);
+ switch_channel_clear_app_flag_key("T38", channel, CF_APP_T38_REQ);
+ switch_channel_set_app_flag_key("T38", channel, CF_APP_T38_FAIL);
+}
+
//?
SWITCH_DECLARE(int) switch_core_media_toggle_hold(switch_core_session_t *session, int sendonly)