8 lines
367 B
C
8 lines
367 B
C
|
|
#pragma once
|
||
|
|
#include <tfe_cmsg.h>
|
||
|
|
#include <MESA/maat.h>
|
||
|
|
|
||
|
|
struct chaining_policy_enforcer;
|
||
|
|
struct chaining_policy_enforcer *chaining_policy_enforcer_create(void *logger);
|
||
|
|
void chaining_policy_enforcer_destory(struct chaining_policy_enforcer *enforcer);
|
||
|
|
void chaining_policy_enforce(struct chaining_policy_enforcer *enforcer, struct tfe_cmsg *cmsg, uint64_t rule_id);
|