From a960e56c6818a2b1ae0173a0c6439a0c0f68d969 Mon Sep 17 00:00:00 2001 From: Cristian Toader Date: Mon, 5 Aug 2013 16:01:31 +0300 Subject: [PATCH] multi-configuration support using sandbox_t struct --- src/common/sandbox.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/common/sandbox.h b/src/common/sandbox.h index 1d5c8236e1..2b265443f8 100644 --- a/src/common/sandbox.h +++ b/src/common/sandbox.h @@ -66,6 +66,15 @@ typedef struct pfd_elem sandbox_cfg_t; typedef int (*sandbox_filter_func_t)(scmp_filter_ctx ctx, sandbox_cfg_t *filter); + +typedef struct { + // function pointers associated with filter + sandbox_filter_func_t *filter_func; + + // filter function pointer parameters + sandbox_cfg_t *filter_dynamic; +} sandbox_t; + /** * Linux 32 bit definitions */ -- 2.47.3