1/*	from UCB 7.1 6/5/86	*/
2
3#pragma ident	"%Z%%M%	%I%	%E% SMI"
4
5/*
6 * Copyright (c) 1982, 1986 Regents of the University of California.
7 * All rights reserved.  The Berkeley software License Agreement
8 * specifies the terms and conditions for redistribution.
9 */
10
11#ifndef _sys_syslog_h
12#define _sys_syslog_h
13
14/*
15 *  Facility codes
16 */
17#define LOG_KERN	(0<<3)	/* kernel messages */
18#define LOG_USER	(1<<3)	/* random user-level messages */
19#define LOG_MAIL	(2<<3)	/* mail system */
20#define LOG_DAEMON	(3<<3)	/* system daemons */
21#define LOG_AUTH	(4<<3)	/* security/authorization messages */
22#define LOG_SYSLOG	(5<<3)	/* messages generated internally by syslogd */
23#define LOG_LPR		(6<<3)	/* line printer subsystem */
24#define LOG_NEWS	(7<<3)	/* netnews subsystem */
25#define LOG_UUCP	(8<<3)	/* uucp subsystem */
26#define	LOG_CRON	(15<<3)	/* cron/at subsystem */
27	/* other codes through 15 reserved for system use */
28#define LOG_LOCAL0	(16<<3)	/* reserved for local use */
29#define LOG_LOCAL1	(17<<3)	/* reserved for local use */
30#define LOG_LOCAL2	(18<<3)	/* reserved for local use */
31#define LOG_LOCAL3	(19<<3)	/* reserved for local use */
32#define LOG_LOCAL4	(20<<3)	/* reserved for local use */
33#define LOG_LOCAL5	(21<<3)	/* reserved for local use */
34#define LOG_LOCAL6	(22<<3)	/* reserved for local use */
35#define LOG_LOCAL7	(23<<3)	/* reserved for local use */
36
37#define LOG_NFACILITIES	24	/* maximum number of facilities */
38#define LOG_FACMASK	0x03f8	/* mask to extract facility part */
39
40/*
41 *  Priorities (these are ordered)
42 */
43#define LOG_EMERG	0	/* system is unusable */
44#define LOG_ALERT	1	/* action must be taken immediately */
45#define LOG_CRIT	2	/* critical conditions */
46#define LOG_ERR		3	/* error conditions */
47#define LOG_WARNING	4	/* warning conditions */
48#define LOG_NOTICE	5	/* normal but signification condition */
49#define LOG_INFO	6	/* informational */
50#define LOG_DEBUG	7	/* debug-level messages */
51
52#define LOG_PRIMASK	0x0007	/* mask to extract priority part (internal) */
53
54/*
55 * arguments to setlogmask.
56 */
57#define	LOG_MASK(pri)	(1 << (pri))		/* mask for one priority */
58#define	LOG_UPTO(pri)	((1 << ((pri)+1)) - 1)	/* all priorities through pri */
59
60/*
61 *  Option flags for openlog.
62 *
63 *	LOG_ODELAY no longer does anything; LOG_NDELAY is the
64 *	inverse of what it used to be.
65 */
66#define	LOG_PID		0x01	/* log the pid with each message */
67#define	LOG_CONS	0x02	/* log on the console if errors in sending */
68#define	LOG_ODELAY	0x04	/* delay open until syslog() is called */
69#define LOG_NDELAY	0x08	/* don't delay open */
70#define LOG_NOWAIT	0x10	/* if forking to log on console, don't wait() */
71
72#endif /*!_sys_syslog_h*/
73