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;
13#[cfg(feature = "runtime-monoio")]
14mod send_rw_stream;
15mod sizify;
16mod ttl_cache;
17
18pub use anti_xss::*;
19pub use header_placeholders::*;
20pub use ip_blocklist::*;
21pub use is_localhost::*;
22pub use match_hostname::*;
23pub use match_location::*;
24pub use module_cache::*;
25#[cfg(feature = "runtime-monoio")]
26pub use monoio_file_stream::*;
27pub use no_server_verifier::*;
28#[cfg(feature = "runtime-monoio")]
29pub use send_rw_stream::*;
30pub use sizify::*;
31pub use ttl_cache::*;
32
33pub const SERVER_SOFTWARE: &str = "Ferron";