-
-
Notifications
You must be signed in to change notification settings - Fork 416
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
RFC: TCP must be connected #1310
Comments
Hi Sean, This looks simple enough even for me. I'll try this to get familiar with the contribution process if you don't mind. |
Awesome @drannise. This change would require an addition to the CHANGELOG plus, make sure you don't overlook the "How to teach this" requirements. They are small but important. I invited you to the org so you can be assigned to the issue. Just drop me a note here when you accept. Have a look at https://github.com/ponylang/ponyc/blob/master/CONTRIBUTING.md if you haven't already. Particularly "how to write a good commit message". Its particular important for this one (as it is referenced as something to do as part of the "How to teach this". Feel free to steal from the RFC summary and motivation for the commit comment as well as including a link to https://github.com/ponylang/rfcs/blob/master/text/0016-tcp-must-be-connected.md if you want. |
I noticed @drannise has accepted the invite and took the liberty of assigning the ticket (after accidentally assigning myself 😝). |
Prevent subtle bugs and potential runaway memory usage that can be introduced by being unfamiliar with the internals of the `TCPConnection` class. As a result of this change when writing to the connection data will be silently discarded if the connection has not yet been established. Resolves: ponylang#1310 See also: https://github.com/ponylang/rfcs/blob/master/text/0016-tcp-must-be-connected.md
Prevent subtle bugs and potential runaway memory usage that can be introduced by being unfamiliar with the internals of the `TCPConnection` class. As a result of this change when writing to the connection data will be silently discarded if the connection has not yet been established. Resolves: ponylang#1310 See also: https://github.com/ponylang/rfcs/blob/master/text/0016-tcp-must-be-connected.md
…1341) Prevent subtle bugs and potential runaway memory usage that can be introduced by being unfamiliar with the internals of the `TCPConnection` class. As a result of this change when writing to the connection data will be silently discarded if the connection has not yet been established. Resolves: #1310 See also: https://github.com/ponylang/rfcs/blob/master/text/0016-tcp-must-be-connected.md
Verify TCP Connections are open before allowing data to be written.
https://github.com/ponylang/rfcs/blob/master/text/0016-tcp-must-be-connected.md
The text was updated successfully, but these errors were encountered: