/*
* Extended AGI test application
*
- * Copyright (C) 2003, Digium, Inc.
+ * This code is released into public domain
+ * without any warranty of any kind.
+ *
*/
#include <stdio.h>
/*
* Extended AGI test application
*
- * Copyright (C) 2003, Digium, Inc.
+ * This code is released into the public domain
+ * with no warranty of any kind
*/
#include <stdio.h>
break;
case ZT_EVENT_ALARM:
p->inalarm = 1;
+ ast_log(LOG_WARNING, "Detected alarm on channel %d\n", p->channel);
/* fall through intentionally */
case ZT_EVENT_ONHOOK:
if (p->radio)
break;
case ZT_EVENT_NOALARM:
i->inalarm = 0;
+ ast_log(LOG_NOTICE, "Alarm cleared on channel %d\n", i->channel);
break;
case ZT_EVENT_ALARM:
i->inalarm = 1;
+ ast_log(LOG_WARNING, "Alarm detected on channel %d\n", i->channel);
/* fall thru intentionally */
case ZT_EVENT_ONHOOK:
/* Back on hook. Hang up. */
res = tone_zone_play_tone(i->subs[SUB_REAL].zfd, -1);
zt_set_hook(i->subs[SUB_REAL].zfd, ZT_ONHOOK);
break;
+ case SIG_PRI:
+ zt_disable_ec(i);
+ res = tone_zone_play_tone(i->subs[SUB_REAL].zfd, -1);
+ break;
default:
ast_log(LOG_WARNING, "Don't know how to handle on hook with signalling %s on channel %d\n", sig2str(i->sig), i->channel);
res = tone_zone_play_tone(i->subs[SUB_REAL].zfd, -1);
"1st File Descriptor: %d\n"
" Frames in: %d\n"
" Frames out: %d\n"
+ " Time to Hangup: %d\n"
" -- PBX --\n"
" Context: %s\n"
" Extension: %s\n"
c->name, c->type,
(c->callerid ? c->callerid : "(N/A)"),
(c->dnid ? c->dnid : "(N/A)" ), ast_state2str(c->_state), c->_state, c->rings, c->nativeformats, c->writeformat, c->readformat,
- c->fds[0], c->fin, c->fout, c->context, c->exten, c->priority, ( c->appl ? c->appl : "(N/A)" ),
+ c->fds[0], c->fin, c->fout, c->whentohangup,
+ c->context, c->exten, c->priority, ( c->appl ? c->appl : "(N/A)" ),
( c-> data ? (strlen(c->data) ? c->data : "(Empty)") : "(None)"),
c->stack, (c->blocking ? c->blockproc : "(Not Blocking)"));