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