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