1/*	$NetBSD: syslog.h,v 1.2.6.1 2012/06/05 21:15:31 bouyer Exp $	*/
2
3/*
4 * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 2001, 2002  Internet Software Consortium.
6 *
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
18 */
19
20/* Id: syslog.h,v 1.7 2007/06/19 23:47:19 tbox Exp  */
21
22#ifndef _SYSLOG_H
23#define _SYSLOG_H
24
25#include <stdio.h>
26
27/* Constant definitions for openlog() */
28#define LOG_PID		1
29#define LOG_CONS	2
30/* NT event log does not support facility level */
31#define LOG_KERN	0
32#define LOG_USER	0
33#define LOG_MAIL	0
34#define LOG_DAEMON	0
35#define LOG_AUTH	0
36#define LOG_SYSLOG	0
37#define LOG_LPR		0
38#define LOG_LOCAL0	0
39#define LOG_LOCAL1	0
40#define LOG_LOCAL2	0
41#define LOG_LOCAL3	0
42#define LOG_LOCAL4	0
43#define LOG_LOCAL5	0
44#define LOG_LOCAL6	0
45#define LOG_LOCAL7	0
46
47#define LOG_EMERG       0       /* system is unusable */
48#define LOG_ALERT       1       /* action must be taken immediately */
49#define LOG_CRIT        2       /* critical conditions */
50#define LOG_ERR         3       /* error conditions */
51#define LOG_WARNING     4       /* warning conditions */
52#define LOG_NOTICE      5       /* normal but signification condition */
53#define LOG_INFO        6       /* informational */
54#define LOG_DEBUG       7       /* debug-level messages */
55
56void
57syslog(int level, const char *fmt, ...);
58
59void
60openlog(const char *, int, ...);
61
62void
63closelog(void);
64
65void
66ModifyLogLevel(int level);
67
68void
69InitNTLogging(FILE *, int);
70
71void
72NTReportError(const char *, const char *);
73/*
74 * Include the event codes required for logging.
75 */
76#include <isc/bindevt.h>
77
78#endif
79