ferron_common/util/
mod.rs

1mod 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;
12#[cfg(feature = "runtime-monoio")]
13mod monoio_file_stream_no_spawn;
14mod no_server_verifier;
15mod parse_q_value_header;
16#[cfg(feature = "runtime-monoio")]
17mod send_rw_stream;
18mod sizify;
19mod ttl_cache;
20
21pub use anti_xss::*;
22pub use header_placeholders::*;
23pub use ip_blocklist::*;
24pub use is_localhost::*;
25pub use match_hostname::*;
26pub use match_location::*;
27pub use module_cache::*;
28#[cfg(feature = "runtime-monoio")]
29pub use monoio_file_stream::*;
30#[cfg(feature = "runtime-monoio")]
31pub use monoio_file_stream_no_spawn::*;
32pub use no_server_verifier::*;
33pub use parse_q_value_header::*;
34#[cfg(feature = "runtime-monoio")]
35pub use send_rw_stream::*;
36pub use sizify::*;
37pub use ttl_cache::*;
38
39/// The web server software identifier
40pub const SERVER_SOFTWARE: &str = "Ferron";