2 * Copyright (C) 2011-2012 Reto Guadagnini
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "unbound_plugin.h"
19 #include "unbound_resolver.h"
21 typedef struct private_unbound_plugin_t private_unbound_plugin_t
;
24 * private data of unbound_plugin
26 struct private_unbound_plugin_t
{
31 unbound_plugin_t
public;
34 METHOD(plugin_t
, get_name
, char*,
35 private_unbound_plugin_t
*this)
40 METHOD(plugin_t
, destroy
, void,
41 private_unbound_plugin_t
*this)
43 lib
->resolver
->remove_resolver(lib
->resolver
, unbound_resolver_create
);
50 plugin_t
*unbound_plugin_create()
52 private_unbound_plugin_t
*this;
57 .get_name
= _get_name
,
63 lib
->resolver
->add_resolver(lib
->resolver
, unbound_resolver_create
);
65 return &this->public.plugin
;