log.h revision 499b34cea04a46823d003d4c0520c8b03e8513cb
/*
* Copyright (C) 1999-2001 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.27 2001/01/09 21:52:59 bwelling Exp $ */
/* Principal Authors: DCL */
#ifndef DNS_LOG_H
#define DNS_LOG_H 1
extern isc_logcategory_t dns_categories[];
extern isc_logmodule_t dns_modules[];
#define DNS_LOGCATEGORY_NOTIFY (&dns_categories[0])
/* Backwards compatibility. */
#define DNS_LOGMODULE_DB (&dns_modules[0])
void
/*
* Make the libdns 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().
*/
void
/*
* Make the libdns library use the provided context for logging internal
* messages.
*
* Requires:
* lctx is a valid logging context.
*/
#endif /* DNS_LOG_H */