]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libtnccs/plugins/tnccs_dynamic/tnccs_dynamic_plugin.c
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libtnccs / plugins / tnccs_dynamic / tnccs_dynamic_plugin.c
1 /*
2 * Copyright (C) 2011 Andreas Steffen
3 *
4 * Copyright (C) secunet Security Networks AG
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 */
16
17 #include "tnccs_dynamic_plugin.h"
18 #include "tnccs_dynamic.h"
19
20 #include <tnc/tnccs/tnccs_manager.h>
21
22 METHOD(plugin_t, get_name, char*,
23 tnccs_dynamic_plugin_t *this)
24 {
25 return "tnccs-dynamic";
26 }
27
28 METHOD(plugin_t, get_features, int,
29 tnccs_dynamic_plugin_t *this, plugin_feature_t *features[])
30 {
31 static plugin_feature_t f[] = {
32 PLUGIN_CALLBACK(tnccs_method_register, tnccs_dynamic_create),
33 PLUGIN_PROVIDE(CUSTOM, "tnccs-dynamic"),
34 PLUGIN_DEPENDS(CUSTOM, "tnccs-1.1"),
35 PLUGIN_DEPENDS(CUSTOM, "tnccs-2.0"),
36 };
37 *features = f;
38 return countof(f);
39 }
40
41 METHOD(plugin_t, destroy, void,
42 tnccs_dynamic_plugin_t *this)
43 {
44 free(this);
45 }
46
47 /*
48 * see header file
49 */
50 plugin_t *tnccs_dynamic_plugin_create()
51 {
52 tnccs_dynamic_plugin_t *this;
53
54 INIT(this,
55 .plugin = {
56 .get_name = _get_name,
57 .get_features = _get_features,
58 .destroy = _destroy,
59 },
60 );
61
62 return &this->plugin;
63 }