Enum nfqueue::Verdict [] [src]

pub enum Verdict {
    Drop,
    Accept,
    Stolen,
    Queue,
    Repeat,
    Stop,
}

Decision on the packet

Variants

Discard the packet

Accept the packet (continue iterations)

Gone away

Inject the packet into a different queue ((the target queue number is in the high 16 bits of the verdict)

Iterate the same cycle one more

Accept, but don't continue iterations

Trait Implementations

impl Clone for Verdict
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more