2018-09-27 04:09:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-11-03 07:06:01 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-09-27 04:09:59 +00:00
|
|
|
extern void (*freecon)(char * con);
|
|
|
|
extern int (*setcon)(const char * con);
|
|
|
|
extern int (*getfilecon)(const char *path, char ** con);
|
|
|
|
extern int (*lgetfilecon)(const char *path, char ** con);
|
|
|
|
extern int (*setfilecon)(const char *path, const char * con);
|
|
|
|
extern int (*lsetfilecon)(const char *path, const char * con);
|
|
|
|
|
2018-09-27 22:26:41 +00:00
|
|
|
void dload_selinux();
|
2018-09-27 04:09:59 +00:00
|
|
|
void restorecon();
|
2018-11-03 07:06:01 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|