You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
469 B
21 lines
469 B
/* |
|
* Implementation of the security services. |
|
* |
|
* Author : Stephen Smalley, <sds@epoch.ncsc.mil> |
|
*/ |
|
#ifndef _SS_SERVICES_H_ |
|
#define _SS_SERVICES_H_ |
|
|
|
#include "policydb.h" |
|
#include "sidtab.h" |
|
|
|
extern struct policydb policydb; |
|
|
|
void services_compute_xperms_drivers(struct extended_perms *xperms, |
|
struct avtab_node *node); |
|
|
|
void services_compute_xperms_decision(struct extended_perms_decision *xpermd, |
|
struct avtab_node *node); |
|
|
|
#endif /* _SS_SERVICES_H_ */ |
|
|
|
|