This commit is contained in:
JerziKaminsky 2017-05-18 09:58:13 +00:00 committed by GitHub
commit 28f3790207
5 changed files with 52 additions and 45 deletions

View file

@ -208,6 +208,7 @@ enum secure_feature {
struct feature_policy {
char *program;
uint32_t features;
bool validated;
};
enum ipc_feature {
@ -235,6 +236,7 @@ enum ipc_feature {
struct ipc_policy {
char *program;
uint32_t features;
bool validated;
};
/**

View file

@ -15,4 +15,5 @@ struct feature_policy *alloc_feature_policy(const char *program);
struct ipc_policy *alloc_ipc_policy(const char *program);
struct command_policy *alloc_command_policy(const char *command);
char *resolve_ipc_path(const char* program);
#endif