pub enum LogFlags {
Tcpseq = 1,
Tcpopt = 2,
Ipopt = 4,
Uid = 8,
Nflog = 16,
Macdecode = 32,
}Available on crate feature
nftables only.Expand description
nf_tables log flags Flags - defines an integer enumeration, with values for each entry occupying a bit, starting from bit 0, (e.g. 1, 2, 4, 8)
Variants§
Tcpseq = 1
Log TCP sequence numbers
Tcpopt = 2
Log TCP options
Ipopt = 4
Log IP options
Uid = 8
Log UID owning local socket
Nflog = 16
Unsupported, don’t reuse
Macdecode = 32
Decode MAC header
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogFlags
impl RefUnwindSafe for LogFlags
impl Send for LogFlags
impl Sync for LogFlags
impl Unpin for LogFlags
impl UnwindSafe for LogFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more