5 releases
0.1.4 | Aug 22, 2019 |
---|---|
0.1.3 | Aug 12, 2019 |
0.1.2 | Jul 24, 2019 |
0.1.1 | Oct 27, 2018 |
0.1.0 | Aug 3, 2018 |
#25 in #socket
57 downloads per month
Used in 3 crates
(2 directly)
58KB
2K
SLoC
tcp_typed
A wrapper around platform TCP socket APIs that leverages the type system to ensure correct usage.
It's quite easy to accidentally misuse the Berkeley sockets or similar APIs, resulting in ECONNRESET/EPIPE/etc, data being lost on close, and potential hangs from non-exhaustive collection of events given edge-triggered notifications.
This library aims to make it impossible to misuse in non-unsafe code.
If you ever see a connection reset / ECONNRESET, EPIPE, data being lost on close, or panic, then it is a bug in this library! Please file an issue with as much info as possible.
It's designed to be used in conjunction with an implementer of the Notifier
trait – for example notifier
. As long as the Notifier
contract is fulfilled, then this library will collect all relevent events (connected, data in, data available to be written, remote closed, bytes acked, connection errors) upon each edge-triggered notification.
Note
Currently doesn't support Windows.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE.txt or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT.txt or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~3.5MB
~68K SLoC