ferron_common/util/
mod.rs1mod anti_xss;
2mod config_macros;
3mod default_html_page;
4mod header_placeholders;
5mod ip_blocklist;
6mod is_localhost;
7mod match_hostname;
8mod match_location;
9mod module_cache;
10#[cfg(feature = "runtime-monoio")]
11mod monoio_file_stream;
12mod no_server_verifier;
13mod parse_q_value_header;
14#[cfg(feature = "runtime-monoio")]
15mod send_rw_stream;
16mod sizify;
17mod ttl_cache;
18
19pub use anti_xss::*;
20pub use header_placeholders::*;
21pub use ip_blocklist::*;
22pub use is_localhost::*;
23pub use match_hostname::*;
24pub use match_location::*;
25pub use module_cache::*;
26#[cfg(feature = "runtime-monoio")]
27pub use monoio_file_stream::*;
28pub use no_server_verifier::*;
29pub use parse_q_value_header::*;
30#[cfg(feature = "runtime-monoio")]
31pub use send_rw_stream::*;
32pub use sizify::*;
33pub use ttl_cache::*;
34
35pub const SERVER_SOFTWARE: &str = "Ferron";