Displaying 2 results from an estimated 2 matches for "calle1334".
Did you mean:
calle1324
2009 Feb 04
0
Stopping chanspy
...de as there is timing
going on that gets messed up while stepping through the code.
My situation is that I have an agent logged in but not in any queue. I use
an AMI packet like this:
Action: Originate
Channel: Agent/1001
Exten: DoChanMon
Context: cfmc_cdi_info
Priority: 1
Variable: CfMC_ActionID=callE1334
Variable: CfMC_WhoHear=SIP/dickenson
ActionID: callE1324
Async: true
to connect to an extension like this:
exten => DoChanMon,1,Answer()
exten => DoChanMon,n,NoOp(Just got '${CfMC_ActionID}')
exten => DoChanMon,n,ChanSpy(${CfMC_WhoHear},q)
exten => DoChanMon,n,Hangup()
and...
2009 Feb 11
0
ChanSpy problem
...=> do_monitor,n,NoOp(Just got '${CfMC_ActionID}')
exten => do_monitor,n,ChanSpy(${CfMC_WhoHear},qX)
exten => do_monitor,n,Hangup()
I use an AMI packet like this:
Action: Originate
Channel: Agent/1001
Exten: do_monitor
Context: cfmc_cdi_private
Priority: 1
Variable: CfMC_ActionID=callE1334
Variable: CfMC_WhoHear=SIP/dickenson
ActionID: callE1324
Async: true
It seems as if the X option to the ChanSpy application causes asterisk to
get into a loop executing priorities 1-3 of the extension until I press a 1
to go to extension 1 in the same context as the do_monitor extension is in.
W...