1 2 3 4 5 6 7 8 9 10
use super::response_phase::ResponsePhaseOutcome; use super::POLICY_METRICS; use std::sync::atomic::Ordering; pub(super) fn fallthrough() -> ResponsePhaseOutcome { POLICY_METRICS .response_fallthrough_total .fetch_add(1, Ordering::Relaxed); ResponsePhaseOutcome::ContinueLoop }