2 * Copyright (C) 2010-2011 Andreas Steffen
3 * HSR 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 "tnc_imv_plugin.h"
17 #include "tnc_imv_manager.h"
22 typedef struct private_tnc_imv_plugin_t private_tnc_imv_plugin_t
;
25 * Private data of a tnc_imv_plugin_t object.
27 struct private_tnc_imv_plugin_t
{
32 tnc_imv_plugin_t
public;
37 METHOD(plugin_t
, get_name
, char*,
38 tnc_imv_plugin_t
*this)
43 METHOD(plugin_t
, get_features
, int,
44 private_tnc_imv_plugin_t
*this, plugin_feature_t
*features
[])
46 static plugin_feature_t f
[] = {
47 PLUGIN_CALLBACK(tnc_manager_register
, tnc_imv_manager_create
),
48 PLUGIN_PROVIDE(CUSTOM
, "imv-manager"),
49 PLUGIN_DEPENDS(CUSTOM
, "tnccs-manager"),
55 METHOD(plugin_t
, destroy
, void,
56 private_tnc_imv_plugin_t
*this)
64 plugin_t
*tnc_imv_plugin_create()
66 private_tnc_imv_plugin_t
*this;
71 .get_name
= _get_name
,
72 .get_features
= _get_features
,
78 return &this->public.plugin
;