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_imc_plugin.h"
17 #include "tnc_imc_manager.h"
21 typedef struct private_tnc_imc_plugin_t private_tnc_imc_plugin_t
;
24 * Private data of a tnc_imc_plugin_t object.
26 struct private_tnc_imc_plugin_t
{
31 tnc_imc_plugin_t
public;
34 METHOD(plugin_t
, get_name
, char*,
35 private_tnc_imc_plugin_t
*this)
40 METHOD(plugin_t
, get_features
, int,
41 private_tnc_imc_plugin_t
*this, plugin_feature_t
*features
[])
43 static plugin_feature_t f
[] = {
44 PLUGIN_CALLBACK(tnc_manager_register
, tnc_imc_manager_create
),
45 PLUGIN_PROVIDE(CUSTOM
, "imc-manager"),
46 PLUGIN_DEPENDS(CUSTOM
, "tnccs-manager"),
52 METHOD(plugin_t
, destroy
, void,
53 private_tnc_imc_plugin_t
*this)
61 plugin_t
*tnc_imc_plugin_create(void)
63 private_tnc_imc_plugin_t
*this;
68 .get_name
= _get_name
,
69 .get_features
= _get_features
,
75 return &this->public.plugin
;