-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Haven't found where command replies #13
Comments
Hi @akmitrich , Could you please share a minimal example so that I can review and check it? |
The example is quite close to outbound.rs in examples folder...
The FreeSWITCH does play "ivr/ivr-welcome.wav" but my server never reaches "Complete Welcome. Start sleeping" line of code. |
@KaranGauswami seems like I found the root of my problem. |
Problem solved: in dialplan there must be |
Fixed the documentation in #14 to include the additional arguments. |
I am to create an ESL server to control FreeSWITCH calls. I try to follow an outbound socket example. So my FreeSWITCH sent an event stream to my ESL server and ESL server issued a playback command on FreeSWITCH but after this the server got stuck. Logs revealed that the server never returns from playback call. I started reading the source and found there the method send_recv of the
EslConnection
. The method awaits on a oneshot channel which is ok but I haven't found anywhere in the source code where any reply is sent via this channel.Please tell me, am I doing something wrong? or is this a bug? or is this a work in progress?
The text was updated successfully, but these errors were encountered: