hakoniwa 1.4.0

Process isolation for Linux using namespaces, resource limits, cgroups, landlock and seccomp.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Configure seccomp profile.

mod action;
mod arch;
mod argcmp;
mod filter;
mod rule;

pub use action::Action;
pub use arch::Arch;
pub use argcmp::{ArgCmp, ArgCmpOp};
pub use filter::Filter;
pub use rule::Rule;