detect/stream_size: Rename detect.rs to stream_size.rs

This commit renames detect.rs to stream_size.rs to reflect its content.
pull/7921/head
Jeff Lucovsky 3 years ago committed by Victor Julien
parent 2386f2614f
commit ab4d0f7f4a

@ -16,9 +16,9 @@
*/
pub mod byte_math;
pub mod detect;
pub mod error;
pub mod iprep;
pub mod parser;
pub mod stream_size;
pub mod uint;
pub mod uri;

@ -15,13 +15,13 @@
* 02110-1301, USA.
*/
use super::uint::*;
use nom7::bytes::complete::{is_a, take_while};
use nom7::character::complete::{alpha0, char, digit1};
use nom7::combinator::{all_consuming, map_opt, map_res, opt};
use nom7::IResult;
use super::uint::*;
use std::ffi::{CStr};
use std::ffi::CStr;
use std::str::FromStr;
#[repr(u8)]
Loading…
Cancel
Save