Skip to content
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

Close sockets with _RealWebSocket destructor #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

james-richey-gv
Copy link

A new helper method, terminateConnection(), is added to ensure all the places where sockets are closed cause the socket file descriptor to become invalidated and the client to be put in the correct state.

A destructor is added to call terminateConnection() ensuring resources are freed if the WebSocket object is destroyed.

Finally, private copy constructor and copy assignment operator are added per the "Rule of Three" ensuring only one instance manages the socket.

This should address issue #71: Websocket::close() doesn't disconnect correctly. Calling WebSocket::close() still requests a clean disconnect; however, the socket is guaranteed to be closed when the WebSocket destructor is run.

A new helper method, terminateConnection(), is added to ensure all the
places where sockets are closed cause the socket file descriptor to
become invalidated and the client to be put in the correct state.

A destructor is added to call terminateConnection() ensuring resources
are freed if the WebSocket object is destroyed.

Finally, private copy constructor and copy assignment operator are added
per the "Rule of Three" ensuring only one instance manages the socket.

This should address issue dhbaird#71: Websocket::close() doesn't disconnect
correctly. Calling WebSocket::close() still requests a clean disconnect;
however, the socket is guaranteed to be closed when the WebSocket
destructor is run.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant