Home | History | Annotate | Download | only in semanage
      1 /* Authors: Joshua Brindle  <jbrindle (at) tresys.com>
      2  *	    Jason Tang	    <jtang (at) 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/node_record.h>
     37 
     38 /* Dbase */
     39 #include <semanage/booleans_local.h>
     40 #include <semanage/booleans_policy.h>
     41 #include <semanage/booleans_active.h>
     42 #include <semanage/users_local.h>
     43 #include <semanage/users_policy.h>
     44 #include <semanage/fcontexts_local.h>
     45 #include <semanage/fcontexts_policy.h>
     46 #include <semanage/seusers_local.h>
     47 #include <semanage/seusers_policy.h>
     48 #include <semanage/ports_local.h>
     49 #include <semanage/ports_policy.h>
     50 #include <semanage/interfaces_local.h>
     51 #include <semanage/interfaces_policy.h>
     52 #include <semanage/nodes_local.h>
     53 #include <semanage/nodes_policy.h>
     54 
     55 #endif
     56