-
Wake up readers after setting the state to RecvClosed to not miss EOF. See PR 190.
-
Use
web-timeinstead ofinstant. See PR 191.
- Bound
Active'spending_framesto enforce backpressure. See 460baf2
- Fix WASM support using
instant::{Duration, Instant}instead ofstd::time::{Duration, Instant}. See PR 179.
- Introduce dynamic stream receive window auto-tuning. While low-resourced deployments maintain the benefit of small buffers, high resource deployments eventually end-up with a window of roughly the bandwidth-delay-product (ideal) and are thus able to use the entire available bandwidth. See PR 176 for performance results and details on the implementation.
- Remove
WindowUpdateMode. Behavior will always beWindowUpdateMode::OnRead, thus enabling flow-control and enforcing backpressure. See PR 178.
- Deprecate
WindowUpdateMode::OnReceive. It does not enforce flow-control, i.e. breaks backpressure. UseWindowUpdateMode::OnReadinstead. See PR #177.
-
Remove
ControlandControlledConnection. Users have to move to thepoll_functions ofConnection. See PR #164. -
Fix a bug where
Streams would not be dropped until their correspondingConnectionwas dropped. See PR #167.
- Avoid race condition between pending frames and closing stream. See PR 156.
- Remove
Connection::controlin favor ofControl::new. RemoveConnection::next_streamin favor ofConnection::poll_next_inbound. See PR 142.
- Process command or socket result immediately and thereby no longer accessing the socket after it returned an error. See PR 138 for details.
-
Default to
WindowUpdateMode::OnRead, thus enabling full Yamux flow-control, exercising back pressure on senders, preventing stream resets due to reaching the buffer limit.See the
WindowUpdateModedocumentation for details, especially the section on deadlocking when sending data larger than the receivers window.
-
Force-split larger frames, for better interleaving of reads and writes between different substreams and to avoid single, large writes. By default frames are capped at, and thus split at,
16KiB, which can be adjusted by a new configuration option, if necessary. -
Send window updates earlier, when half of the window has been consumed, to minimise pauses due to transmission delays, particularly if there is just a single dominant substream.
-
Avoid possible premature stream resets of streams that have been properly closed and already dropped but receive window update or other frames while the remaining buffered frames are still sent out. Incoming frames for unknown streams are now ignored, instead of triggering a stream reset for the remote.
- Avoid possible premature stream resets of streams that have been properly closed and already dropped but receive window update or other frames while the remaining buffered frames are still sent out. Incoming frames for unknown streams are now ignored, instead of triggering a stream reset for the remote.
- Upgrade step 4 of 4. This version always assumes the new semantics and no longer sets the non-standard flag in intial window updates.
- The configuration option
lazy_openis removed. Initial window updates are sent automatically if the receive window is configured to be larger than the default.
Upgrade step 3 of 4. This version sets the non-standard flag, but irrespective of whether it is present or not, always assumes the new additive semantics of the intial window update.
Upgrade step 2 of 4. This version sets the non-standard flag, version 0.5.0 already recognises.
This version begins the upgrade process spawning multiple versions that changes the meaning of the initial window update from "This is the total size of the receive window." to "This is the size of the receive window in addition to the default size." This is necessary for compatibility with other yamux implementations. See issue #92 for details.
As a first step, version 0.5.0 interprets a non-standard flag to imply the
new meaning. Future versions will set this flag and eventually the new
meaning will always be assumed. Upgrading from the current implemention to
the new semantics requires deployment of every intermediate version, each of
which is only compatible with its immediate predecessor. Alternatively, if
the default configuration together with lazy_open set to true is
deployed on all communicating endpoints, one can skip directly to the end
of the transition.
- Bugfixes (#93).
- Bugfixes (#91).
- Improve documentation (#88).
- Bugfix release (#85).
- Send RST frame if the window of a dropped stream is 0 and it is in state
SendClosed(#84).
- Removed
bytes(#77) andthiserror(#78) dependencies. - Removed implicit
BufWritercreation (#77). Client code that depends on this (undocumented) behaviour needs to wrap the socket in aBufWriterbefore passing it toConnection::new. - Added
Connection::is_closedflag (#80) to immediately returnOk(None)fromConnection::next_streamafterErr(_)orOk(None)have been returned previously.
- Control and stream command channels are now closed and drained immediately
on error. This is done to prevent client code from submitting further close
or other commands which will never be acted upon since the API contract of
Connection::next_streamis that afterNoneor anErr(_)is returned it must not be called again.
- Updates nohash-hasher dependency to v0.2.0.
- A new configuration option
lazy_open(off by default) has been added and inbound streams are now acknowledged (#73). Iflazy_openis set totruewe will not immediately send an initialWindowUpdateframe but instead just set theSYNflag on the first outboundDataframe. SeeConfiguration::set_lazy_openfor details.
- Log connection reset errors on debug level (#72).
- Hide
StreamId::newand update dependencies.
Update to use and work with async/await:
Config::set_max_pending_frameshas been removed. Internal back-pressure made the setting unnecessary. As another consequence the errorConnectionError::TooManyPendingFrameshas been removed.Connectionno longer has methods to open a new stream or to close the connection. Instead a separate handle typeControlhas been added which allows these operations concurrently to the connection itself.- In Yamux 0.2.x every
StreamHandleI/O operation would drive theConnection. Now, the only way theConnectionmakes progress is through itsnext_streammethod which must be called continuously. For convenience a functioninto_streamhas been added which turns theConnectioninto afutures::stream::Streamimpl, invokingnext_streamin itspoll_nextmethod. StreamHandlehas been renamed toStreamand its methodscreditandstatehave been removed.Streamalso implementsfutures::stream::Streamand producesPackets.ConnectionError::StreamNotFoundhas been removed. Incoming frames for unknown streams are answered with a RESET frame, unless they finish the stream.DecodeErrorhas been renamed toFrameDecodeErrorandDecodeError::Typecorresponds toFramedDecodeError::Headerwhich handles not just unknown frame type errors, but more. Hence a new errorHeaderDecodeErrorhas been added for those error cases.
- Updated dependencies (#56).
- Bugfix release (pull request #54).
- Added
max_pending_framessetting toConfig. AConnectionbuffers outgoing frames up to this limit (see pull request #51). - Added
ConnectionError::TooManyPendingFramesifmax_pending_frameshas been reached. - Changed error types of
Connection::closeandConnection::flushfromstd::io::Errortoyamux::ConnectionError. - Removed
Connection::shutdownmethod which was deprecated since version 0.1.8.
- Add
read_after_closesetting toConfigwhich defaults totrueto match the behaviour of previous versions. Settingread_after_closetofalsewill cause stream reads to return withOk(0)as soon as the connection is closed, preventing them from reading data from their buffer.
- Mark
Connection::shutdownas deprecated (#44).
- Bugfix release (#36).
- Support for half-closed streams (#38).
- Avoids redundant RESET frames (#37).
- Better test coverage (#40, #42).
- Bugfix release (pull requests #34 and #35).
- Bugfix release (pull request #33).
- Bugfix release (pull requests #30 and #31).
- Bugfix release (pull requests #27 and #28).
- Bugfix release. See pull request #26 for details.
- Forward
Stream::pollto the newly addedConnection::pollmethod which acceptsselfas a shared reference. See pull request #24 for details.
- Initial release.