mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +00:00
Make chan_vpb.c detect austel busy (bug 545)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2567 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -270,7 +270,7 @@ static inline int monitor_handle_owned(struct vpb_pvt *p, VPB_EVENT *e)
|
||||
break;
|
||||
|
||||
case VPB_TONEDETECT:
|
||||
if (e->data == VPB_BUSY || e->data == VPB_BUSY_308)
|
||||
if (e->data == VPB_BUSY || e->data == VPB_BUSY_308 || e->data == VPB_BUSY_AUST)
|
||||
f.subclass = AST_CONTROL_BUSY;
|
||||
else if (e->data == VPB_GRUNT) {
|
||||
p->lastgrunt = tcounter;
|
||||
|
||||
Reference in New Issue
Block a user