Merge from vendor branch FILE:
[dragonfly.git] / contrib / bind-9.3 / bin / named / include / named / log.h
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-2002  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.12.3 2004/03/08 04:04:21 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 #define NS_LOGCATEGORY_UPDATE_SECURITY  (&ns_g_categories[6])
37
38 /*
39  * Backwards compatibility.
40  */
41 #define NS_LOGCATEGORY_GENERAL          ISC_LOGCATEGORY_GENERAL
42
43 #define NS_LOGMODULE_MAIN               (&ns_g_modules[0])
44 #define NS_LOGMODULE_CLIENT             (&ns_g_modules[1])
45 #define NS_LOGMODULE_SERVER             (&ns_g_modules[2])
46 #define NS_LOGMODULE_QUERY              (&ns_g_modules[3])
47 #define NS_LOGMODULE_INTERFACEMGR       (&ns_g_modules[4])
48 #define NS_LOGMODULE_UPDATE             (&ns_g_modules[5])
49 #define NS_LOGMODULE_XFER_IN            (&ns_g_modules[6])
50 #define NS_LOGMODULE_XFER_OUT           (&ns_g_modules[7])
51 #define NS_LOGMODULE_NOTIFY             (&ns_g_modules[8])
52 #define NS_LOGMODULE_CONTROL            (&ns_g_modules[9])
53 #define NS_LOGMODULE_LWRESD             (&ns_g_modules[10])
54
55 isc_result_t
56 ns_log_init(isc_boolean_t safe);
57 /*
58  * Initialize the logging system and set up an initial default
59  * logging default configuration that will be used until the
60  * config file has been read.
61  *
62  * If 'safe' is true, use a default configuration that refrains
63  * from opening files.  This is to avoid creating log files
64  * as root.
65  */
66
67 isc_result_t
68 ns_log_setdefaultchannels(isc_logconfig_t *lcfg);
69 /*
70  * Set up logging channels according to the named defaults, which
71  * may differ from the logging library defaults.  Currently,
72  * this just means setting up default_debug.
73  */
74
75 isc_result_t
76 ns_log_setsafechannels(isc_logconfig_t *lcfg);
77 /*
78  * Like ns_log_setdefaultchannels(), but omits any logging to files.
79  */
80
81 isc_result_t
82 ns_log_setdefaultcategory(isc_logconfig_t *lcfg);
83 /*
84  * Set up "category default" to go to the right places.
85  */
86
87 isc_result_t
88 ns_log_setunmatchedcategory(isc_logconfig_t *lcfg);
89 /*
90  * Set up "category unmatched" to go to the right places.
91  */
92
93 void
94 ns_log_shutdown(void);
95
96 #endif /* NAMED_LOG_H */