aboutsummaryrefslogtreecommitdiffstats
path: root/libsemanage/src/direct_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsemanage/src/direct_api.h')
-rw-r--r--libsemanage/src/direct_api.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/libsemanage/src/direct_api.h b/libsemanage/src/direct_api.h
new file mode 100644
index 00000000..8f625f5c
--- /dev/null
+++ b/libsemanage/src/direct_api.h
@@ -0,0 +1,40 @@
+/* Authors: Jason Tang <jtang@tresys.com>
+ *
+ * Copyright (C) 2004-2005 Tresys Technology, LLC
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef _SEMANAGE_DIRECT_API_H_
+#define _SEMANAGE_DIRECT_API_H_
+
+/* Circular dependency */
+struct semanage_handle;
+
+/* Direct component of handle */
+struct semanage_direct_handle {
+
+ /* Locking */
+ int activelock_file_fd;
+ int translock_file_fd;
+};
+
+int semanage_direct_connect(struct semanage_handle *sh);
+
+int semanage_direct_is_managed(struct semanage_handle *sh);
+
+int semanage_direct_access_check(struct semanage_handle *sh);
+
+#endif