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.
67pub mod ipset_ddos;