/*
 * Tentative shape of a security label.
 * Not for general use yet.
*/

#ifndef L_BITS

#define LABSIZ 30	/* just fits with di_mode in a disk inode */

#define L_UNDEF	0	/* no valid value yet */
#define L_YES	1	/* the universally permissive label */
#define L_NO	2	/* the universally restrictive label */
#define L_BITS	3	/* this one is in the lattice */

struct label {
	char	flag;
	char	trusted;
	short	lab[LABSIZ];
};

#endif
