mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
Merged revisions 281870 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r281870 | rmudgett | 2010-08-11 15:30:29 -0500 (Wed, 11 Aug 2010) | 4 lines Fix a call to analog_set_pulsedial() not setting 0 or 1 only. * Also a couple minor tweaks. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@281871 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2471,7 +2471,7 @@ static struct ast_frame *__analog_handle_event(struct analog_pvt *p, struct ast_
|
||||
ast_debug(1, "Got event %s(%d) on channel %d (index %d)\n", analog_event2str(res), res, p->channel, index);
|
||||
|
||||
if (res & (ANALOG_EVENT_PULSEDIGIT | ANALOG_EVENT_DTMFUP)) {
|
||||
analog_set_pulsedial(p, (res & ANALOG_EVENT_PULSEDIGIT));
|
||||
analog_set_pulsedial(p, (res & ANALOG_EVENT_PULSEDIGIT) ? 1 : 0);
|
||||
ast_debug(1, "Detected %sdigit '%c'\n", (res & ANALOG_EVENT_PULSEDIGIT) ? "pulse ": "", res & 0xff);
|
||||
analog_confmute(p, 0);
|
||||
p->subs[index].f.frametype = AST_FRAME_DTMF_END;
|
||||
@@ -3581,11 +3581,9 @@ void *analog_handle_init_event(struct analog_pvt *i, int event)
|
||||
}
|
||||
break;
|
||||
case ANALOG_EVENT_REMOVED: /* destroy channel, will actually do so in do_monitor */
|
||||
ast_log(LOG_NOTICE,
|
||||
"Got DAHDI_EVENT_REMOVED. Destroying channel %d\n",
|
||||
i->channel);
|
||||
return i->chan_pvt;
|
||||
break;
|
||||
ast_log(LOG_NOTICE, "Got DAHDI_EVENT_REMOVED. Destroying channel %d\n",
|
||||
i->channel);
|
||||
return i->chan_pvt;
|
||||
case ANALOG_EVENT_NEONMWI_ACTIVE:
|
||||
analog_handle_notify_message(NULL, i, -1, ANALOG_EVENT_NEONMWI_ACTIVE);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user