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
{{ message }}
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.
In the state machine of rws_socket_work_th_func, it will try to send data in idle state (through the rws_socket_idle_send function). Within this function, it will eventually call the rws_socket_send function. But once the function fails to send, it will call the rws_socket_close function to close once. You will then change the state machine to COMMAND_INFORM_DISCONNECTED, which will eventually be turned off again in rws_socket_work_th_func!!!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the state machine of
rws_socket_work_th_func
, it will try to send data in idle state (through therws_socket_idle_send
function). Within this function, it will eventually call therws_socket_send
function. But once the function fails to send, it will call therws_socket_close
function to close once. You will then change the state machine toCOMMAND_INFORM_DISCONNECTED
, which will eventually be turned off again inrws_socket_work_th_func
!!!The text was updated successfully, but these errors were encountered: