mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

* codec: add new constructor `with_max_length ` to `LinesCodec` * codec: add security note to docs Signed-off-by: Eliza Weisman <eliza@buoyant.io> * Fix Rust 1.25 compatibility * codec: Fix incorrect line lengths in tests (and add assertions) Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Fix off-by-one error in lines codec Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Fix call to decode rather than decode_eof in test Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Fix incorrect LinesCodec::decode_max_line_length This bug was introduced after the fix for the off-by-one error. Fortunately, the doctests caught it. Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Minor style improvements Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Don't allow LinesCodec length limit to be set after construction Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: change LinesCodec to error and discard line when at max length * codec: Fix build on Rust 1.25 The slice patterns syntax wasn't supported yet in that release. Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Add test for out-of-bounds index when peeking Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Fix out of bounds index * codec: Fix incomplete comment Signed-off-by: Eliza Weisman <eliza@buoyant.io> * codec: Add test for line decoder buffer underrun
tokio-codec
Utilities for encoding and decoding frames.
Usage
First, add this to your Cargo.toml
:
[dependencies]
tokio-codec = "0.1"
Next, add this to your crate:
extern crate tokio_codec;
You can find extensive documentation and examples about how to use this crate online at https://tokio.rs. The API documentation is also a great place to get started for the nitty-gritty.
License
This project is licensed under the MIT license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tokio by you, shall be licensed as MIT, without any additional terms or conditions.