Skip to content

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.
@ideepcoder
Copy link

_RealWebSocket& operator=(const _RealWebSocket&);

VS2022 warning says "function definition for 'operator=' not found."

Is there a definition required? ofc, WS should not be copied

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.

2 participants