~ubuntu-branches/ubuntu/warty/checkpolicy/warty

« back to all changes in this revision

Viewing changes to services.h

  • Committer: Bazaar Package Importer
  • Author(s): Russell Coker
  • Date: 2004-05-20 04:32:00 UTC
  • Revision ID: james.westby@ubuntu.com-20040520043200-w4lzkx37dmmc3wt9
Tags: upstream-1.10
ImportĀ upstreamĀ versionĀ 1.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* Author : Stephen Smalley, <sds@epoch.ncsc.mil> */
 
3
 
 
4
/* FLASK */
 
5
 
 
6
#ifndef _SERVICES_H_
 
7
#define _SERVICES_H_
 
8
 
 
9
#include "policydb.h"
 
10
#include "sidtab.h"
 
11
 
 
12
/*
 
13
 * The security server uses two global data structures
 
14
 * when providing its services:  the SID table (sidtab)
 
15
 * and the policy database (policydb).
 
16
 */
 
17
extern sidtab_t sidtab;
 
18
extern policydb_t policydb;
 
19
 
 
20
#endif  /* _SERVICES_H_ */
 
21
 
 
22
/* FLASK */
 
23