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 closing the connection from the client I always get 1005
1005
1005 No Status Recvd | Reserved. Indicates that no status code was provided even though one was expected.
https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent
So the client tries to reconnect because it was not a clean close..
The close code should be 1000
1000
The text was updated successfully, but these errors were encountered:
Server sending the value:
const ENCODE_CLOSE = 136;
on close event and then closes the stream.
Do u know what code for 1000 for frame head I need to apply specifically on server (they r different from client in spec)?
Sorry, something went wrong.
No sorry.. I have not previously worked with websocket
arthurkushman
No branches or pull requests
When closing the connection from the client I always get
1005
1005
No Status Recvd | Reserved.
Indicates that no status code was provided even though one was expected.
https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent
So the client tries to reconnect because it was not a clean close..
The close code should be
1000
The text was updated successfully, but these errors were encountered: