sark-core 0.3.0

the L7 layer for dope
Documentation
mod apply;
mod byte;
mod error;
mod flags;
mod input;
mod parsed;
mod visitor;
mod well_known;

pub use apply::{
    CSV_CHUNKED_BIT, CSV_CLOSE_BIT, CSV_CONTINUE_BIT, CSV_KEEP_ALIVE_BIT, KnownHeader,
    apply_accept_encoding, apply_connection, apply_content_length, apply_expect, apply_host,
    apply_transfer_encoding, clen_line, conn_line, expect_line, host_line, te_line,
};
pub use byte::{is_ascii_ws, is_header_name_byte};
pub use error::{ERR_INVALID_HEADER_NAME, ERR_TOO_MANY_HEADERS, bad_request};
pub use flags::{Flags, SeenHeaderHandler};
pub use input::{BytesScan, HeadInput, HeaderLineScan};
pub use parsed::ParsedRequest;
pub use visitor::{Known, Visitor};
pub use well_known::{apply_well_known_header, apply_well_known_header_contig, unknown_line};