diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/clog.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,7 @@ #include <kore/kore.h> #include <kore/http.h> #include <kore/pgsql.h> +#include <kore/seccomp.h> #include "assets.h" @@ -11,6 +12,10 @@ #include "../lib/md4c/src/md4c-html.h" #include "../lib/md4c/src/md4c-html.c" +KORE_SECCOMP_FILTER("app", + KORE_SYSCALL_ALLOW(getdents64) +) + int init(int); int post(struct http_request *); int posts(struct http_request *); |