Merge from vendor branch GCC:
[dragonfly.git] / contrib / bind-9.2.4rc7 / bin / named / include / named / log.h
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: log.h,v 1.19.2.1 2004/03/09 06:09:22 marka Exp $ */
19
20 #ifndef NAMED_LOG_H
21 #define NAMED_LOG_H 1
22
23 #include <isc/log.h>
24 #include <isc/types.h>
25
26 #include <dns/log.h>
27
28 #include <named/globals.h>      /* Required for ns_g_(categories|modules). */
29
30 /* Unused slot 0. */
31 #define NS_LOGCATEGORY_CLIENT           (&ns_g_categories[1])
32 #define NS_LOGCATEGORY_NETWORK          (&ns_g_categories[2])
33 #define NS_LOGCATEGORY_UPDATE           (&ns_g_categories[3])
34 #define NS_LOGCATEGORY_QUERIES          (&ns_g_categories[4])
35 #define NS_LOGCATEGORY_UNMATCHED        (&ns_g_categories[5])
36
37 /*
38  * Backwards compatibility.
39  */
40 #define NS_LOGCATEGORY_GENERAL          ISC_LOGCATEGORY_GENERAL
41
42 #define NS_LOGMODULE_MAIN               (&ns_g_modules[0])
43 #define NS_LOGMODULE_CLIENT             (&ns_g_modules[1])
44 #define NS_LOGMODULE_SERVER             (&ns_g_modules[2])
45 #define NS_LOGMODULE_QUERY              (&ns_g_modules[3])
46 #define NS_LOGMODULE_INTERFACEMGR       (&ns_g_modules[4])
47 #define NS_LOGMODULE_UPDATE             (&ns_g_modules[5])
48 #define NS_LOGMODULE_XFER_IN            (&ns_g_modules[6])
49 #define NS_LOGMODULE_XFER_OUT           (&ns_g_modules[7])
50 #define NS_LOGMODULE_NOTIFY             (&ns_g_modules[8])
51 #define NS_LOGMODULE_CONTROL            (&ns_g_modules[9])
52 #define NS_LOGMODULE_LWRESD             (&ns_g_modules[10])
53
54 isc_result_t
55 ns_log_init(isc_boolean_t safe);
56 /*
57  * Initialize the logging system and set up an initial default
58  * logging default configuration that will be used until the
59  * config file has been read.
60  *
61  * If 'safe' is true, use a default configuration that refrains
62  * from opening files.  This is to avoid creating log files
63  * as root.
64  */
65
66 isc_result_t
67 ns_log_setdefaultchannels(isc_logconfig_t *lcfg);
68 /*
69  * Set up logging channels according to the named defaults, which
70  * may differ from the logging library defaults.  Currently,
71  * this just means setting up default_debug.
72  */
73
74 isc_result_t
75 ns_log_setsafechannels(isc_logconfig_t *lcfg);
76 /*
77  * Like ns_log_setdefaultchannels(), but omits any logging to files.
78  */
79
80 isc_result_t
81 ns_log_setdefaultcategory(isc_logconfig_t *lcfg);
82 /*
83  * Set up "category default" to go to the right places.
84  */
85
86 isc_result_t
87 ns_log_setunmatchedcategory(isc_logconfig_t *lcfg);
88 /*
89  * Set up "category unmatched" to go to the right places.
90  */
91
92 void
93 ns_log_shutdown(void);
94
95 #endif /* NAMED_LOG_H */