]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libcharon/plugins/eap_gtc/eap_gtc_plugin.c
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libcharon / plugins / eap_gtc / eap_gtc_plugin.c
1 /*
2 * Copyright (C) 2008 Martin Willi
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 "eap_gtc_plugin.h"
18
19 #include "eap_gtc.h"
20
21 #include <daemon.h>
22
23 METHOD(plugin_t, get_name, char*,
24 eap_gtc_plugin_t *this)
25 {
26 return "eap-gtc";
27 }
28
29 METHOD(plugin_t, get_features, int,
30 eap_gtc_plugin_t *this, plugin_feature_t *features[])
31 {
32 static plugin_feature_t f[] = {
33 PLUGIN_CALLBACK(eap_method_register, eap_gtc_create_server),
34 PLUGIN_PROVIDE(EAP_SERVER, EAP_GTC),
35 PLUGIN_CALLBACK(eap_method_register, eap_gtc_create_peer),
36 PLUGIN_PROVIDE(EAP_PEER, EAP_GTC),
37 };
38 *features = f;
39 return countof(f);
40 }
41
42 METHOD(plugin_t, destroy, void,
43 eap_gtc_plugin_t *this)
44 {
45 free(this);
46 }
47
48 /*
49 * see header file
50 */
51 plugin_t *eap_gtc_plugin_create()
52 {
53 eap_gtc_plugin_t *this;
54
55 INIT(this,
56 .plugin = {
57 .get_name = _get_name,
58 .get_features = _get_features,
59 .destroy = _destroy,
60 },
61 );
62
63 return &this->plugin;
64 }
65