1/*	$NetBSD: dbus_mgr.h,v 1.2 2011/02/16 03:46:54 christos Exp $	*/
2
3/* dbus_mgr.h
4 *
5 *  named module to provide dynamic forwarding zones in
6 *  response to D-BUS dhcp events
7 *
8 *  Copyright(C) Jason Vas Dias, Red Hat Inc., 2005
9 *
10 *  This program is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License as published by
12 *  the Free Software Foundation at
13 *           http://www.fsf.org/licensing/licenses/gpl.txt
14 *  and included in this software distribution as the "LICENSE" file.
15 *
16 *  This program is distributed in the hope that it will be useful,
17 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 *  GNU General Public License for more details.
20 */
21
22extern isc_result_t
23dbus_mgr_create
24(   isc_mem_t *mctx,
25    isc_taskmgr_t *taskmgr,
26    isc_socketmgr_t *socketmgr,
27    isc_timermgr_t *timermgr,
28    ns_dbus_mgr_t **dbus_mgr
29);
30
31extern void
32dbus_mgr_shutdown
33(   ns_dbus_mgr_t *dus_mgr_t
34);
35
36
37
38
39
40