You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes it easier to detect when e.g. a command has not received a response due to freeswitch disconnecting.
That's useful because often it's expected that a call may be hung up while a command is running, and it would be nice to be able to differentiate between that and a network error, for example.
Side note: not sure what your level of proficiency is with FreeSwitch, but if you're ready to use client-mode you might want to use esl-lite, it might have more to offer than plain esl.
(I haven't announced esl-lite yet because I'm still working on its documentation. esl will stick around for backward compatibility and for its Server mode which can be useful for tests.)
Thanks for the tip, @shimaore. I'll check out esl-lite when I have the chance.
I'm using server mode because I want to send calls from the dialplan to my node.js app (in other words, I only want to control the call in certain cases, like when an option is selected from an ivr). Is there an easy way to do this in client mode?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This makes it easier to detect when e.g. a command has not received a response due to freeswitch disconnecting.
That's useful because often it's expected that a call may be hung up while a command is running, and it would be nice to be able to differentiate between that and a network error, for example.