⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log.h

📁 package of develop dns
💻 H
字号:
/* * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC") * Copyright (C) 1999-2002  Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. *//* $Id: log.h,v 1.19.12.3 2004/03/08 04:04:21 marka Exp $ */#ifndef NAMED_LOG_H#define NAMED_LOG_H 1#include <isc/log.h>#include <isc/types.h>#include <dns/log.h>#include <named/globals.h>	/* Required for ns_g_(categories|modules). *//* Unused slot 0. */#define NS_LOGCATEGORY_CLIENT		(&ns_g_categories[1])#define NS_LOGCATEGORY_NETWORK		(&ns_g_categories[2])#define NS_LOGCATEGORY_UPDATE		(&ns_g_categories[3])#define NS_LOGCATEGORY_QUERIES		(&ns_g_categories[4])#define NS_LOGCATEGORY_UNMATCHED	(&ns_g_categories[5])#define NS_LOGCATEGORY_UPDATE_SECURITY	(&ns_g_categories[6])/* * Backwards compatibility. */#define NS_LOGCATEGORY_GENERAL		ISC_LOGCATEGORY_GENERAL#define NS_LOGMODULE_MAIN		(&ns_g_modules[0])#define NS_LOGMODULE_CLIENT		(&ns_g_modules[1])#define NS_LOGMODULE_SERVER		(&ns_g_modules[2])#define NS_LOGMODULE_QUERY		(&ns_g_modules[3])#define NS_LOGMODULE_INTERFACEMGR	(&ns_g_modules[4])#define NS_LOGMODULE_UPDATE		(&ns_g_modules[5])#define NS_LOGMODULE_XFER_IN		(&ns_g_modules[6])#define NS_LOGMODULE_XFER_OUT		(&ns_g_modules[7])#define NS_LOGMODULE_NOTIFY		(&ns_g_modules[8])#define NS_LOGMODULE_CONTROL		(&ns_g_modules[9])#define NS_LOGMODULE_LWRESD		(&ns_g_modules[10])isc_result_tns_log_init(isc_boolean_t safe);/* * Initialize the logging system and set up an initial default * logging default configuration that will be used until the * config file has been read. * * If 'safe' is true, use a default configuration that refrains * from opening files.  This is to avoid creating log files * as root. */isc_result_tns_log_setdefaultchannels(isc_logconfig_t *lcfg);/* * Set up logging channels according to the named defaults, which * may differ from the logging library defaults.  Currently, * this just means setting up default_debug. */isc_result_tns_log_setsafechannels(isc_logconfig_t *lcfg);/* * Like ns_log_setdefaultchannels(), but omits any logging to files. */isc_result_tns_log_setdefaultcategory(isc_logconfig_t *lcfg);/* * Set up "category default" to go to the right places. */isc_result_tns_log_setunmatchedcategory(isc_logconfig_t *lcfg);/* * Set up "category unmatched" to go to the right places. */voidns_log_shutdown(void);#endif /* NAMED_LOG_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -