xref: /minix/external/bsd/bind/dist/lib/isc/bind9.c (revision 00b67f09)
1 /*	$NetBSD: bind9.c,v 1.1.1.3 2014/12/10 03:34:43 christos Exp $	*/
2 
3 /*
4  * Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /*! \file */
20 
21 #include <config.h>
22 
23 #include <isc/bind9.h>
24 
25 /*
26  * This determines whether we are using the libisc/libdns libraries
27  * in BIND9 or in some other application. It is initialized to ISC_TRUE
28  * and remains unchanged for BIND9 and related tools; export library
29  * clients will run isc_lib_register(), which sets it to ISC_FALSE,
30  * overriding certain BIND9 behaviors.
31  */
32 LIBISC_EXTERNAL_DATA isc_boolean_t isc_bind9 = ISC_TRUE;
33