northstar_runtime/seccomp/
mod.rs

1// Write Berkeley Packet Filter (BPF) programs
2mod bpf;
3pub use bpf::{seccomp_filter, AllowList};
4
5/// Predefined seccomp profiles
6pub mod profiles;
7
8// internal types
9mod types;
10pub use types::{Profile, Seccomp, SyscallArgRule, SyscallRule};