pub type IngressVerdict<I> = Verdict<IngressStopReason<I>>;Expand description
The verdict for the ingress hook.
Aliased Type§
pub enum IngressVerdict<I> {
Proceed(Accept),
Stop(IngressStopReason<I>),
}Variants§
Proceed(Accept)
The packet should continue traversing the stack.
Stop(IngressStopReason<I>)
The packet processing should be stopped. The argument specifies additional actions to take.