mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
28 lines
947 B
C
28 lines
947 B
C
/*
|
|
* Copyright (C) 2011, 2016 Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/* $Id: driver.h,v 1.4 2011/03/17 09:25:54 fdupont Exp $ */
|
|
|
|
/*
|
|
* This header includes the declarations of entry points.
|
|
*/
|
|
|
|
dlz_dlopen_version_t dlz_version;
|
|
dlz_dlopen_create_t dlz_create;
|
|
dlz_dlopen_destroy_t dlz_destroy;
|
|
dlz_dlopen_findzonedb_t dlz_findzonedb;
|
|
dlz_dlopen_lookup_t dlz_lookup;
|
|
dlz_dlopen_allowzonexfr_t dlz_allowzonexfr;
|
|
dlz_dlopen_allnodes_t dlz_allnodes;
|
|
dlz_dlopen_newversion_t dlz_newversion;
|
|
dlz_dlopen_closeversion_t dlz_closeversion;
|
|
dlz_dlopen_configure_t dlz_configure;
|
|
dlz_dlopen_ssumatch_t dlz_ssumatch;
|
|
dlz_dlopen_addrdataset_t dlz_addrdataset;
|
|
dlz_dlopen_subrdataset_t dlz_subrdataset;
|
|
dlz_dlopen_delrdataset_t dlz_delrdataset;
|