aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_vpb.c
diff options
context:
space:
mode:
authorbkramer <bkramer@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-04 00:27:52 +0000
committerbkramer <bkramer@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-04 00:27:52 +0000
commitf74c0b75cee67250c8ec634e914a9af782a582fc (patch)
treed410b18622f92d116258903e77e005b1d1b009cf /channels/chan_vpb.c
parentc7e9fc09bb1adeb7ae5c8ab6841490ad69c97b1c (diff)
/ added fax detection support
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5133 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_vpb.c')
-rwxr-xr-xchannels/chan_vpb.c28
1 files changed, 26 insertions, 2 deletions
diff --git a/channels/chan_vpb.c b/channels/chan_vpb.c
index d2e48d9b5..8d1d11da9 100755
--- a/channels/chan_vpb.c
+++ b/channels/chan_vpb.c
@@ -302,6 +302,8 @@ static struct vpb_pvt {
ast_mutex_t play_dtmf_lock;
char play_dtmf[16];
+ int faxhandled; /* has a fax tone been handled ? */
+
struct vpb_pvt *next; /* Next channel in list */
} *iflist = NULL;
@@ -807,7 +809,26 @@ static inline int monitor_handle_owned(struct vpb_pvt *p, VPB_EVENT *e)
else {
f.subclass = AST_CONTROL_BUSY;
}
- } else if (e->data == VPB_GRUNT) {
+ }
+ else if (e->data == VPB_FAX){
+ if (!p->faxhandled){
+ if (strcmp(p->owner->exten, "fax")) {
+ if (ast_exists_extension(p->owner, ast_strlen_zero(p->owner->macrocontext) ? p->owner->context : p->owner->macrocontext, "fax", 1, p->owner->cid.cid_num)) {
+ if (option_verbose > 2)
+ ast_verbose(VERBOSE_PREFIX_3 "Redirecting %s to fax extension\n", p->owner->name);
+ /* Save the DID/DNIS when we transfer the fax call to a "fax" extension */
+ pbx_builtin_setvar_helper(p->owner,"FAXEXTEN",p->owner->exten);
+ if (ast_async_goto(p->owner, p->owner->context, "fax", 1))
+ ast_log(LOG_WARNING, "Failed to async goto '%s' into fax of '%s'\n", p->owner->name, p->owner->context);
+ } else
+ ast_log(LOG_NOTICE, "Fax detected, but no fax extension\n");
+ } else
+ ast_log(LOG_DEBUG, "Already in a fax extension, not redirecting\n");
+ } else
+ ast_log(LOG_DEBUG, "Fax already handled\n");
+
+ }
+ else if (e->data == VPB_GRUNT) {
if( ( get_time_in_ms() - p->lastgrunt ) > gruntdetect_timeout ) {
/* Nothing heard on line for a very long time
* Timeout connection */
@@ -819,8 +840,10 @@ static inline int monitor_handle_owned(struct vpb_pvt *p, VPB_EVENT *e)
p->lastgrunt = get_time_in_ms();
f.frametype = -1;
}
- } else
+ }
+ else {
f.frametype = -1;
+ }
break;
case VPB_CALLEND:
@@ -2462,6 +2485,7 @@ static struct ast_channel *vpb_new(struct vpb_pvt *me, int state, char *context)
me->last_ignore_dtmf = 1;
me->readthread = 0;
me->play_dtmf[0] = '\0';
+ me->faxhandled =0;
me->lastgrunt = get_time_in_ms(); /* Assume at least one grunt tone seen now. */