Skip to main content

hashiverse_server_lib/transport/ddos/
mod.rs

1//! # Kernel-level DDoS protection for production servers
2//!
3//! The production `DdosProtection` implementation that escalates bans from
4//! in-RAM scoring to Linux `ipset` + `iptables`, dropping offending traffic at
5//! the kernel before it ever touches userspace.
6
7pub mod ipset_ddos;