2 * Copyright (C) 2008 Martin Willi
3 * 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
18 #include "eap_identity_plugin.h"
20 #include "eap_identity.h"
25 * Implementation of plugin_t.destroy
27 static void destroy(eap_identity_plugin_t
*this)
29 charon
->eap
->remove_method(charon
->eap
,
30 (eap_constructor_t
)eap_identity_create_server
);
31 charon
->eap
->remove_method(charon
->eap
,
32 (eap_constructor_t
)eap_identity_create_peer
);
39 plugin_t
*plugin_create()
41 eap_identity_plugin_t
*this = malloc_thing(eap_identity_plugin_t
);
43 this->plugin
.destroy
= (void(*)(plugin_t
*))destroy
;
45 charon
->eap
->add_method(charon
->eap
, EAP_IDENTITY
, 0, EAP_SERVER
,
46 (eap_constructor_t
)eap_identity_create_server
);
47 charon
->eap
->add_method(charon
->eap
, EAP_IDENTITY
, 0, EAP_PEER
,
48 (eap_constructor_t
)eap_identity_create_peer
);