Struct tokio_codec::LinesCodec [−][src]
pub struct LinesCodec { /* fields omitted */ }
A simple Codec
implementation that splits up data into lines.
Implementations
impl LinesCodec
[src]
impl LinesCodec
[src]pub fn new() -> LinesCodec
[src]
Returns a LinesCodec
for splitting up data into lines.
Note
The returned LinesCodec
will not have an upper bound on the length
of a buffered line. See the documentation for new_with_max_length
for information on why this could be a potential security risk.
pub fn new_with_max_length(max_length: usize) -> Self
[src]
Returns a LinesCodec
with a maximum line length limit.
If this is set, calls to LinesCodec::decode
will return a
LengthError
when a line exceeds the length limit. Subsequent calls
will discard up to limit
bytes from that line until a newline
character is reached, returning None
until the line over the limit
has been fully discarded. After that point, calls to decode
will
function as normal.
Note
Setting a length limit is highly recommended for any LinesCodec
which
will be exposed to untrusted input. Otherwise, the size of the buffer
that holds the line currently being read is unbounded. An attacker could
exploit this unbounded buffer by sending an unbounded amount of input
without any \n
characters, causing unbounded memory consumption.
pub fn max_length(&self) -> usize
[src]
Returns the maximum line length when decoding.
use std::usize; use tokio_codec::LinesCodec; let codec = LinesCodec::new(); assert_eq!(codec.max_length(), usize::MAX);
use tokio_codec::LinesCodec; let codec = LinesCodec::new_with_max_length(256); assert_eq!(codec.max_length(), 256);
Trait Implementations
impl Clone for LinesCodec
[src]
impl Clone for LinesCodec
[src]fn clone(&self) -> LinesCodec
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Decoder for LinesCodec
[src]
impl Decoder for LinesCodec
[src]type Item = String
The type of decoded frames.
type Error = Error
The type of unrecoverable frame decoding errors. Read more
fn decode(&mut self, buf: &mut BytesMut) -> Result<Option<String>, Error>
[src]
fn decode_eof(&mut self, buf: &mut BytesMut) -> Result<Option<String>, Error>
[src]
pub fn framed<T>(self, io: T) -> Framed<T, Self> where
Self: Encoder,
T: AsyncRead + AsyncWrite,
[src]
Self: Encoder,
T: AsyncRead + AsyncWrite,
impl Encoder for LinesCodec
[src]
impl Encoder for LinesCodec
[src]impl Hash for LinesCodec
[src]
impl Hash for LinesCodec
[src]impl Ord for LinesCodec
[src]
impl Ord for LinesCodec
[src]impl PartialEq<LinesCodec> for LinesCodec
[src]
impl PartialEq<LinesCodec> for LinesCodec
[src]fn eq(&self, other: &LinesCodec) -> bool
[src]
fn ne(&self, other: &LinesCodec) -> bool
[src]
impl PartialOrd<LinesCodec> for LinesCodec
[src]
impl PartialOrd<LinesCodec> for LinesCodec
[src]