We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the EventSocket connects to FreeSWITCH and no auth command is sent afterwards, FreeSWITCH sends a disconnect notice after about 25 seconds:
EventSocket
auth
[2021-11-05T17:12:58Z ERROR free_socks::event_socket] Reader loop crashed: Socket receiver closed by peer. [2021-11-05T17:12:58Z DEBUG free_socks::event_socket] Ending reader loop [2021-11-05T17:12:58Z TRACE free_socks::event_socket] Received: Message { headers: [("Content-Type", "text/disconnect-notice"), ("Content-Length", "67")], content: Some(Content { ty: "text/disconnect-notice", data: "Disconnected, goodbye.\nSee you at ClueCon! http://www.cluecon.com/\n" }) } [2021-11-05T17:12:58Z DEBUG free_socks::event_socket] Received disconnect notice: Disconnected, goodbye. See you at ClueCon! http://www.cluecon.com/
The problem is that there is currently no way to detect this until another command is sent.
Ideas:
is_connected()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the
EventSocket
connects to FreeSWITCH and noauth
command is sent afterwards, FreeSWITCH sends a disconnect notice after about 25 seconds:The problem is that there is currently no way to detect this until another command is sent.
Ideas:
is_connected()
function.The text was updated successfully, but these errors were encountered: