summaryrefslogtreecommitdiff
path: root/usr.bin/tcfs/tcfserrors.h
blob: 3a1e042c7a6c09c8377988fb78a658e7234a2eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*	$OpenBSD: tcfserrors.h,v 1.5 2002/02/16 21:27:54 millert Exp $	*/

/*
 *	Transparent Cryptographic File System (TCFS) for NetBSD 
 *	Author and mantainer: 	Luigi Catuogno [luicat@tcfs.unisa.it]
 *	
 *	references:		http://tcfs.dia.unisa.it
 *				tcfs-bsd@tcfs.unisa.it
 */

/*
 *	Base utility set v0.1
 */

#ifndef _ERRORS_H
#define _ERRORS_H

enum
{
	OK=0,		/* Ok, no error */
	ER_CUSTOM,	/* Custom error message */
	ER_UNKOPT,	/* Unknown command line option */
	ER_AUTH,	/* User authentication error */
	ER_MEM,		/* Out of memory error */
	ER_TCFS,	/* User is not allowed to use TCFS */
	ER_USER,	/* User error */
	ER_PERM,	/* Error calling TCFS_IOC_PERMANENT ioctl */
	ER_ENABLE,	/* Error calling TCFS_IOC_LOGIN ioctl */
	ER_DISABLE,	/* Error calling TCFS_IOC_DISABLE ioctl */
	ER_COUNT	/* Error calling TCFS_IOC_COUNT ioctl */
};

void	tcfs_error(int, char *);

#endif