mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-24 15:47:18 -04:00
return an isc_logconfig_t. isc_log_cretechannel and isc_log_usechannel now take an isc_logconfig_t instead of an isc_log_t; this is to address reconfiguration in a multithreaded environment. isc_logconfig_create, isc_logconfig_get, isc_logconfig_use and isc_logconfig_destroy were added to work with the new isc_logconfig_t type. isc_logregister_categories and dns_log_init are now both void rather than returning isc_result_t.
79 lines
2.7 KiB
C
79 lines
2.7 KiB
C
/*
|
|
* Copyright (C) 1999, 2000 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 INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
* CONSORTIUM 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.12 2000/02/26 19:57:01 tale Exp $ */
|
|
|
|
/* Principal Authors: DCL */
|
|
|
|
#ifndef DNS_LOG_H
|
|
#define DNS_LOG_H 1
|
|
|
|
#include <isc/log.h>
|
|
|
|
#include <dns/result.h>
|
|
|
|
ISC_LANG_BEGINDECLS
|
|
|
|
extern isc_log_t *dns_lctx;
|
|
extern isc_logcategory_t dns_categories[];
|
|
extern isc_logmodule_t dns_modules[];
|
|
|
|
#define DNS_LOGCATEGORY_GENERAL (&dns_categories[0])
|
|
#define DNS_LOGCATEGORY_DATABASE (&dns_categories[1])
|
|
#define DNS_LOGCATEGORY_SECURITY (&dns_categories[2])
|
|
#define DNS_LOGCATEGORY_CONFIG (&dns_categories[3])
|
|
#define DNS_LOGCATEGORY_PARSER (&dns_categories[4])
|
|
#define DNS_LOGCATEGORY_RESOLVER (&dns_categories[5])
|
|
#define DNS_LOGCATEGORY_XFER_IN (&dns_categories[6])
|
|
#define DNS_LOGCATEGORY_XFER_OUT (&dns_categories[7])
|
|
|
|
#define DNS_LOGMODULE_DB (&dns_modules[0])
|
|
#define DNS_LOGMODULE_RBTDB (&dns_modules[1])
|
|
#define DNS_LOGMODULE_RBTDB64 (&dns_modules[2])
|
|
#define DNS_LOGMODULE_RBT (&dns_modules[3])
|
|
#define DNS_LOGMODULE_RDATA (&dns_modules[4])
|
|
#define DNS_LOGMODULE_MASTER (&dns_modules[5])
|
|
#define DNS_LOGMODULE_MESSAGE (&dns_modules[6])
|
|
#define DNS_LOGMODULE_CACHE (&dns_modules[7])
|
|
#define DNS_LOGMODULE_CONFIG (&dns_modules[8])
|
|
#define DNS_LOGMODULE_RESOLVER (&dns_modules[9])
|
|
#define DNS_LOGMODULE_ZONE (&dns_modules[10])
|
|
#define DNS_LOGMODULE_JOURNAL (&dns_modules[11])
|
|
#define DNS_LOGMODULE_ADB (&dns_modules[12])
|
|
#define DNS_LOGMODULE_XFER_IN (&dns_modules[13])
|
|
#define DNS_LOGMODULE_XFER_OUT (&dns_modules[14])
|
|
#define DNS_LOGMODULE_ACL (&dns_modules[15])
|
|
|
|
void
|
|
dns_log_init(isc_log_t *lctx);
|
|
/*
|
|
* Make the libdns.a categories and modules available for use with the
|
|
* ISC logging library.
|
|
*
|
|
* Requires:
|
|
* lctx is a valid logging context.
|
|
*
|
|
* dns_log_init() is called only once.
|
|
*
|
|
* Ensures:
|
|
* The catgories and modules defined above are available for
|
|
* use by isc_log_usechannnel() and isc_log_write().
|
|
*/
|
|
|
|
ISC_LANG_ENDDECLS
|
|
|
|
#endif /* DNS_LOG_H */
|