Displaying 1 result from an estimated 1 matches for "domorestuff".
2010 May 07
1
Execute AGI, Then Continue
Hi all,
I'm running Asterisk 1.6.2.7 using the following pseudo-dialplan (not actual
dialplan, because of complexity):
[something]
exten => s,1,Answer()
exten => s,n,AGI(blah,arg1,arg2)
exten => s,n,Playback(blah)
exten => s,n,DoMoreStuff()
exten => s,n,Hangup()
What I'd like to do, is have Asterisk launch my AGI script and continue
executing dialplan without waiting for the AGI to finish executing. I'm
aware that I can do this manually in my AGI by forking, but I'd like to
avoid doing it that way if possible.
I rem...