services.h 450 B

123456789101112131415161718192021
  1. /*
  2. * Implementation of the security services.
  3. *
  4. * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
  5. */
  6. #ifndef _SS_SERVICES_H_
  7. #define _SS_SERVICES_H_
  8. #include "policydb.h"
  9. #include "sidtab.h"
  10. extern struct policydb policydb;
  11. void services_compute_operation_type(struct operation *ops,
  12. struct avtab_node *node);
  13. void services_compute_operation_num(struct operation_decision *od,
  14. struct avtab_node *node);
  15. #endif /* _SS_SERVICES_H_ */