2008-08-19 19:30:36 +00:00
|
|
|
#ifndef _SEPOL_H_
|
|
|
|
#define _SEPOL_H_
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
2014-12-16 19:44:41 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
#include <sepol/user_record.h>
|
|
|
|
#include <sepol/context_record.h>
|
|
|
|
#include <sepol/iface_record.h>
|
|
|
|
#include <sepol/port_record.h>
|
|
|
|
#include <sepol/boolean_record.h>
|
|
|
|
#include <sepol/node_record.h>
|
|
|
|
|
|
|
|
#include <sepol/booleans.h>
|
|
|
|
#include <sepol/interfaces.h>
|
|
|
|
#include <sepol/ports.h>
|
|
|
|
#include <sepol/nodes.h>
|
|
|
|
#include <sepol/users.h>
|
|
|
|
#include <sepol/handle.h>
|
|
|
|
#include <sepol/debug.h>
|
|
|
|
#include <sepol/policydb.h>
|
|
|
|
#include <sepol/module.h>
|
|
|
|
#include <sepol/context.h>
|
|
|
|
|
|
|
|
/* Set internal policydb from a file for subsequent service calls. */
|
|
|
|
extern int sepol_set_policydb_from_file(FILE * fp);
|
|
|
|
|
2014-12-16 19:44:41 +00:00
|
|
|
__END_DECLS
|
2008-08-19 19:30:36 +00:00
|
|
|
#endif
|