1999-09-23 17:43:51 +00:00
|
|
|
/*
|
2000-02-03 23:50:32 +00:00
|
|
|
* Copyright (C) 1999, 2000 Internet Software Consortium.
|
1999-09-23 17:43:51 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2000-02-03 23:50:32 +00:00
|
|
|
/* $Id: log.c,v 1.13 2000/02/03 23:43:49 halley Exp $ */
|
1999-09-23 17:43:51 +00:00
|
|
|
|
|
|
|
/* Principal Authors: DCL */
|
|
|
|
|
|
|
|
#include <isc/assertions.h>
|
|
|
|
#include <isc/log.h>
|
|
|
|
#include <isc/result.h>
|
|
|
|
|
|
|
|
#include <dns/log.h>
|
|
|
|
#include <dns/result.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When adding a new category, be sure to add the appropriate
|
|
|
|
* #define to <dns/log.h>.
|
|
|
|
*/
|
|
|
|
isc_logcategory_t dns_categories[] = {
|
1999-10-22 19:31:06 +00:00
|
|
|
{ "dns_general", 0 },
|
|
|
|
{ "dns_database", 0 },
|
|
|
|
{ "dns_security", 0 },
|
|
|
|
{ "dns_config", 0 },
|
|
|
|
{ "dns_parser", 0 },
|
|
|
|
{ "dns_resolver", 0 },
|
1999-10-29 22:37:47 +00:00
|
|
|
{ "dns_xfer_in", 0 },
|
|
|
|
{ "dns_xfer_out", 0 },
|
1999-09-23 17:43:51 +00:00
|
|
|
{ NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When adding a new module, be sure to add the appropriate
|
|
|
|
* #define to <dns/log.h>.
|
|
|
|
*/
|
|
|
|
isc_logmodule_t dns_modules[] = {
|
1999-10-22 19:31:06 +00:00
|
|
|
{ "dns/db", 0 },
|
|
|
|
{ "dns/rbtdb", 0 },
|
|
|
|
{ "dns/rbtdb64", 0 },
|
|
|
|
{ "dns/rbt", 0 },
|
|
|
|
{ "dns/rdata", 0 },
|
|
|
|
{ "dns/master", 0 },
|
|
|
|
{ "dns/message", 0 },
|
|
|
|
{ "dns/cache", 0 },
|
|
|
|
{ "dns/config", 0 },
|
|
|
|
{ "dns/resolver", 0 },
|
1999-10-25 11:21:03 +00:00
|
|
|
{ "dns/zone", 0 },
|
1999-10-27 00:30:28 +00:00
|
|
|
{ "dns/journal", 0 },
|
1999-10-29 22:36:44 +00:00
|
|
|
{ "dns/adb", 0 },
|
1999-10-29 22:37:47 +00:00
|
|
|
{ "dns/xfrin", 0 },
|
|
|
|
{ "dns/xfrout", 0 },
|
1999-12-16 23:11:07 +00:00
|
|
|
{ "dns/acl", 0 },
|
1999-10-22 19:31:06 +00:00
|
|
|
{ NULL, 0 }
|
1999-09-23 17:43:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
isc_log_t *dns_lctx;
|
|
|
|
|
1999-12-23 00:09:04 +00:00
|
|
|
isc_result_t
|
1999-09-23 17:43:51 +00:00
|
|
|
dns_log_init(isc_log_t *lctx) {
|
|
|
|
isc_result_t result;
|
|
|
|
|
|
|
|
REQUIRE(dns_lctx == NULL);
|
|
|
|
|
|
|
|
result = isc_log_registercategories(lctx, dns_categories);
|
|
|
|
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
isc_log_registermodules(lctx, dns_modules);
|
2000-01-06 15:02:16 +00:00
|
|
|
dns_lctx = lctx;
|
1999-09-23 17:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|