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