xref: /netbsd-src/external/bsd/ntp/dist/include/ntp_syslog.h (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: ntp_syslog.h,v 1.1.1.1 2009/12/13 16:54:54 kardel Exp $	*/
2 
3 /*
4  * A hack for platforms which require specially built syslog facilities
5  */
6 
7 #ifndef NTP_SYSLOG_H
8 #define NTP_SYSLOG_H
9 
10 # ifdef VMS
11 extern void msyslog();
12 # else
13 #   ifndef SYS_VXWORKS
14 #   include <syslog.h>
15 #   endif
16 # endif /* VMS */
17 # include <stdio.h>
18 
19 extern int syslogit;
20 extern FILE *syslog_file;
21 
22 #if defined(VMS) || defined (SYS_VXWORKS)
23 #define	LOG_EMERG	0	/* system is unusable */
24 #define	LOG_ALERT	1	/* action must be taken immediately */
25 #define	LOG_CRIT	2	/* critical conditions */
26 #define	LOG_ERR		3	/* error conditions */
27 #define	LOG_WARNING	4	/* warning conditions */
28 #define	LOG_NOTICE	5	/* normal but signification condition */
29 #define	LOG_INFO	6	/* informational */
30 #define	LOG_DEBUG	7	/* debug-level messages */
31 #endif /* VMS || VXWORKS */
32 
33 /*
34  * syslog output control
35  */
36 #define NLOG_INFO		0x00000001
37 #define NLOG_EVENT		0x00000002
38 #define NLOG_STATUS		0x00000004
39 #define NLOG_STATIST		0x00000008
40 
41 #define NLOG_OSYS			 0 /* offset for system flags */
42 #define NLOG_SYSMASK    	0x0000000F /* system log events */
43 #define NLOG_SYSINFO		0x00000001 /* system info log events */
44 #define NLOG_SYSEVENT		0x00000002 /* system events */
45 #define NLOG_SYSSTATUS		0x00000004 /* system status (sync/unsync) */
46 #define NLOG_SYSSTATIST		0x00000008 /* system statistics output */
47 
48 #define NLOG_OPEER			 4 /* offset for peer flags */
49 #define NLOG_PEERMASK    	0x000000F0 /* peer log events */
50 #define NLOG_PEERINFO		0x00000010 /* peer info log events */
51 #define NLOG_PEEREVENT		0x00000020 /* peer events */
52 #define NLOG_PEERSTATUS		0x00000040 /* peer status (sync/unsync) */
53 #define NLOG_PEERSTATIST	0x00000080 /* peer statistics output */
54 
55 #define NLOG_OCLOCK			 8 /* offset for clock flags */
56 #define NLOG_CLOCKMASK    	0x00000F00 /* clock log events */
57 #define NLOG_CLOCKINFO		0x00000100 /* clock info log events */
58 #define NLOG_CLOCKEVENT		0x00000200 /* clock events */
59 #define NLOG_CLOCKSTATUS	0x00000400 /* clock status (sync/unsync) */
60 #define NLOG_CLOCKSTATIST	0x00000800 /* clock statistics output */
61 
62 #define NLOG_OSYNC			12 /* offset for sync flags */
63 #define NLOG_SYNCMASK    	0x0000F000 /* sync log events */
64 #define NLOG_SYNCINFO		0x00001000 /* sync info log events */
65 #define NLOG_SYNCEVENT		0x00002000 /* sync events */
66 #define NLOG_SYNCSTATUS		0x00004000 /* sync status (sync/unsync) */
67 #define NLOG_SYNCSTATIST	0x00008000 /* sync statistics output */
68 
69 extern unsigned long ntp_syslogmask;
70 #define NLOG(_X_)	if (ntp_syslogmask & (_X_))
71 
72 #endif /* NTP_SYSLOG_H */
73