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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/*
* A hack for platforms which require specially built syslog facilities
*/
#ifndef GUARD_NTP_SYSLOG_H
#define GUARD_NTP_SYSLOG_H
#include <stdio.h>
#include <syslog.h>
#include "ntp_types.h" /* uint32_t type */
extern bool syslogit; /* log to syslogit */
extern bool termlogit; /* duplicate to stdout/err */
extern bool termlogit_pid;
extern bool msyslog_include_timestamp;
/*
* syslog output control
*/
#define NLOG_INFO 0x00000001
#define NLOG_EVENT 0x00000002
#define NLOG_STATUS 0x00000004
#define NLOG_STATIST 0x00000008
#define NLOG_OSYS 0 /* offset for system flags */
#define NLOG_SYSMASK 0x0000000F /* system log events */
#define NLOG_SYSINFO 0x00000001 /* system info log events */
#define NLOG_SYSEVENT 0x00000002 /* system events */
#define NLOG_SYSSTATUS 0x00000004 /* system status (sync/unsync) */
#define NLOG_SYSSTATIST 0x00000008 /* system statistics output */
#define NLOG_OPEER 4 /* offset for peer flags */
#define NLOG_PEERMASK 0x000000F0 /* peer log events */
#define NLOG_PEERINFO 0x00000010 /* peer info log events */
#define NLOG_PEEREVENT 0x00000020 /* peer events */
#define NLOG_PEERSTATUS 0x00000040 /* peer status (sync/unsync) */
#define NLOG_PEERSTATIST 0x00000080 /* peer statistics output */
#define NLOG_OCLOCK 8 /* offset for clock flags */
#define NLOG_CLOCKMASK 0x00000F00 /* clock log events */
#define NLOG_CLOCKINFO 0x00000100 /* clock info log events */
#define NLOG_CLOCKEVENT 0x00000200 /* clock events */
#define NLOG_CLOCKSTATUS 0x00000400 /* clock status (sync/unsync) */
#define NLOG_CLOCKSTATIST 0x00000800 /* clock statistics output */
#define NLOG_OSYNC 12 /* offset for sync flags */
#define NLOG_SYNCMASK 0x0000F000 /* sync log events */
#define NLOG_SYNCINFO 0x00001000 /* sync info log events */
#define NLOG_SYNCEVENT 0x00002000 /* sync events */
#define NLOG_SYNCSTATUS 0x00004000 /* sync status (sync/unsync) */
#define NLOG_SYNCSTATIST 0x00008000 /* sync statistics output */
extern uint32_t ntp_syslogmask;
#define NLOG(bits) if (ntp_syslogmask & (bits))
#define LOGIF(nlog_suffix, msl_args) \
do { \
NLOG(NLOG_##nlog_suffix) /* like "if (...) */ \
msyslog msl_args; \
} while (false)
#endif /* GUARD_NTP_SYSLOG_H */
|