This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
Releases: webrtc-rs/sctp
Releases · webrtc-rs/sctp
v0.6.0
What's Changed
- update deps + loosen some requirements by @melekes in #19
- Handle unknown parameters in InitChunk and unknown chunks by @KillingSpark in #17
- Add unmarshal fuzzing and fix some issues found by fuzzing by @KillingSpark in #25
- association: only reset stored_init once ACK is received by @melekes in #24
- [PollStream] reset shutdown_fut future after done by @melekes in #32
New Contributors
- @KillingSpark made their first contribution in #17
Breaking
This crates now requires a minimum of Rust 1.57.0
Full Changelog: v0.5.0...v0.6.0
v0.5.0
Changelog
New features and updates
- #9 Implement
AsyncRead
andAsyncWrite
forStream
- Use
PollStream
if you want the async version ofStream
- Use
- #14 Allow reading after
Stream
is closed viashutdown(Shutdown::Write)
.- when closed,
Stream::read
andStream::read_sctp
now return0
instead ofErrStreamClosed
to comply withstd::net::Shutdown
. Stream::close
is deprecated. Useshutdown
method.
- when closed,
Full changelog: v0.4.2...v0.5.0