From 16c379e430aad1bf8cc3d3f5040abfe02774d394 Mon Sep 17 00:00:00 2001 From: Mathieu Rene Date: Tue, 10 Feb 2009 22:00:39 +0000 Subject: [PATCH] Dont hangup after sending/receiving faxes git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11734 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_fax/mod_fax.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/mod/applications/mod_fax/mod_fax.c b/src/mod/applications/mod_fax/mod_fax.c index 6c0f649c48..53cc0aba81 100644 --- a/src/mod/applications/mod_fax/mod_fax.c +++ b/src/mod/applications/mod_fax/mod_fax.c @@ -88,6 +88,8 @@ struct pvt_s { int tx_page_start; int tx_page_end; + + int done; /* UNUSED AT THE MOMENT int enable_t38_reinvite; @@ -246,7 +248,9 @@ static void phase_e_handler(t30_state_t * s, void *user_data, int result) switch_safe_free(tmp); } -switch_channel_hangup(channel, SWITCH_CAUSE_NORMAL_CLEARING); + /* switch_channel_hangup(channel, SWITCH_CAUSE_NORMAL_CLEARING); */ + + pvt->done = 1; /* TODO Fire events @@ -628,7 +632,7 @@ void process_fax(switch_core_session_t *session, const char *data, application_m /* read new audio frame from the channel */ status = switch_core_session_read_frame(session, &read_frame, SWITCH_IO_FLAG_NONE, 0); - if (!SWITCH_READ_ACCEPTABLE(status)) { + if (!SWITCH_READ_ACCEPTABLE(status) || pvt->done) { /* Our duty is over */ goto done; }