From: Cristian Toader Date: Mon, 5 Aug 2013 13:01:31 +0000 (+0300) Subject: multi-configuration support using sandbox_t struct X-Git-Tag: tor-0.2.5.1-alpha~39^2~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a960e56c6818a2b1ae0173a0c6439a0c0f68d969;p=thirdparty%2Ftor.git multi-configuration support using sandbox_t struct --- 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 */