[BACK]Return to bind9.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / mpl / bind / dist / lib / isc

Annotation of src/external/mpl/bind/dist/lib/isc/bind9.c, Revision 1.1.1.3

1.1       christos    1: /*     $NetBSD$        */
                      2:
                      3: /*
                      4:  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
                      5:  *
                      6:  * This Source Code Form is subject to the terms of the Mozilla Public
                      7:  * License, v. 2.0. If a copy of the MPL was not distributed with this
                      8:  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
                      9:  *
                     10:  * See the COPYRIGHT file distributed with this work for additional
                     11:  * information regarding copyright ownership.
                     12:  */
                     13:
                     14: /*! \file */
                     15:
1.1.1.2   christos   16: #include <stdbool.h>
                     17:
1.1       christos   18: #include <isc/bind9.h>
                     19:
                     20: /*
                     21:  * This determines whether we are using the libisc/libdns libraries
1.1.1.2   christos   22:  * in BIND9 or in some other application. It is initialized to true
1.1       christos   23:  * and remains unchanged for BIND9 and related tools; export library
1.1.1.2   christos   24:  * clients will run isc_lib_register(), which sets it to false,
1.1       christos   25:  * overriding certain BIND9 behaviors.
                     26:  */
1.1.1.2   christos   27: LIBISC_EXTERNAL_DATA bool isc_bind9 = true;

CVSweb <webmaster@jp.NetBSD.org>