1 /* Authors: Joshua Brindle <jbrindle@tresys.com> 2 * Jason Tang <jtang@tresys.com> 3 * 4 * Copyright (C) 2005 Tresys Technology, LLC 5 * Copyright (C) 2005 Red Hat, Inc. 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public 9 * License as published by the Free Software Foundation; either 10 * version 2.1 of the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 */ 21 22 #ifndef _SEMANAGE_SEMANAGE_H_ 23 #define _SEMANAGE_SEMANAGE_H_ 24 25 #include <semanage/handle.h> 26 #include <semanage/modules.h> 27 #include <semanage/debug.h> 28 29 /* Records */ 30 #include <semanage/boolean_record.h> 31 #include <semanage/user_record.h> 32 #include <semanage/seuser_record.h> 33 #include <semanage/context_record.h> 34 #include <semanage/iface_record.h> 35 #include <semanage/port_record.h> 36 #include <semanage/ibpkey_record.h> 37 #include <semanage/ibendport_record.h> 38 #include <semanage/node_record.h> 39 40 /* Dbase */ 41 #include <semanage/booleans_local.h> 42 #include <semanage/booleans_policy.h> 43 #include <semanage/booleans_active.h> 44 #include <semanage/users_local.h> 45 #include <semanage/users_policy.h> 46 #include <semanage/fcontexts_local.h> 47 #include <semanage/fcontexts_policy.h> 48 #include <semanage/seusers_local.h> 49 #include <semanage/seusers_policy.h> 50 #include <semanage/ports_local.h> 51 #include <semanage/ports_policy.h> 52 #include <semanage/ibpkeys_local.h> 53 #include <semanage/ibendports_local.h> 54 #include <semanage/ibendports_policy.h> 55 #include <semanage/ibpkeys_policy.h> 56 #include <semanage/interfaces_local.h> 57 #include <semanage/interfaces_policy.h> 58 #include <semanage/nodes_local.h> 59 #include <semanage/nodes_policy.h> 60 61 #endif 62