hakoniwa 1.6.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
/// Represents an action to be taken on a filter rule.
#[derive(Hash, Eq, PartialEq, Clone, Copy, Debug)]
pub enum Action {
    Allow,
    Errno(i32),
    KillProcess,
    KillThread,
    Log,
    Notify,
    Trace(u16),
    Trap,
}