aboutsummaryrefslogtreecommitdiffstats
path: root/src/fseccomp/fseccomp.h
diff options
context:
space:
mode:
authorLibravatar smitsohu <smitsohu@gmail.com>2022-07-19 15:19:24 +0200
committerLibravatar smitsohu <smitsohu@gmail.com>2022-07-23 16:21:14 +0200
commit87afef810c2dfbf67420dc76a67c707fbb7353db (patch)
treed44aed25d9c050967eb6abe31b4081c0956f4a74 /src/fseccomp/fseccomp.h
parentprotocol filter: add x32 ABI handling (diff)
downloadfirejail-87afef810c2dfbf67420dc76a67c707fbb7353db.tar.gz
firejail-87afef810c2dfbf67420dc76a67c707fbb7353db.tar.zst
firejail-87afef810c2dfbf67420dc76a67c707fbb7353db.zip
introduce new option restrict-namespaces
Diffstat (limited to 'src/fseccomp/fseccomp.h')
-rw-r--r--src/fseccomp/fseccomp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fseccomp/fseccomp.h b/src/fseccomp/fseccomp.h
index 65337da2a..5911b5156 100644
--- a/src/fseccomp/fseccomp.h
+++ b/src/fseccomp/fseccomp.h
@@ -61,6 +61,10 @@ void seccomp_keep(const char *fname1, const char *fname2, char *list, bool nativ
61void memory_deny_write_execute(const char *fname); 61void memory_deny_write_execute(const char *fname);
62void memory_deny_write_execute_32(const char *fname); 62void memory_deny_write_execute_32(const char *fname);
63 63
64// namespaces.c
65void deny_ns(const char *fname, const char *list);
66void deny_ns_32(const char *fname, const char *list);
67
64// seccomp_print 68// seccomp_print
65void filter_print(const char *fname); 69void filter_print(const char *fname);
66 70