]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libtnccs/plugins/tnccs_20/tnccs_20_plugin.c
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libtnccs / plugins / tnccs_20 / tnccs_20_plugin.c
1 /*
2 * Copyright (C) 2010 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_20_plugin.h"
18 #include "tnccs_20.h"
19
20 #include <tnc/tnccs/tnccs_manager.h>
21
22 METHOD(plugin_t, get_name, char*,
23 tnccs_20_plugin_t *this)
24 {
25 return "tnccs-20";
26 }
27
28 METHOD(plugin_t, get_features, int,
29 tnccs_20_plugin_t *this, plugin_feature_t *features[])
30 {
31 static plugin_feature_t f[] = {
32 PLUGIN_CALLBACK(tnccs_method_register, tnccs_20_create),
33 PLUGIN_PROVIDE(CUSTOM, "tnccs-2.0"),
34 PLUGIN_DEPENDS(CUSTOM, "tnccs-manager"),
35 };
36 *features = f;
37 return countof(f);
38 }
39
40 METHOD(plugin_t, destroy, void,
41 tnccs_20_plugin_t *this)
42 {
43 free(this);
44 }
45
46 /*
47 * see header file
48 */
49 plugin_t *tnccs_20_plugin_create()
50 {
51 tnccs_20_plugin_t *this;
52
53 INIT(this,
54 .plugin = {
55 .get_name = _get_name,
56 .get_features = _get_features,
57 .destroy = _destroy,
58 },
59 );
60
61 return &this->plugin;
62 }