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