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
16 #include "eap_md5_plugin.h"
23 * Implementation of plugin_t.destroy
25 static void destroy(eap_md5_plugin_t
*this)
27 charon
->eap
->remove_method(charon
->eap
,
28 (eap_constructor_t
)eap_md5_create_server
);
29 charon
->eap
->remove_method(charon
->eap
,
30 (eap_constructor_t
)eap_md5_create_peer
);
37 plugin_t
*plugin_create()
39 eap_md5_plugin_t
*this = malloc_thing(eap_md5_plugin_t
);
41 this->plugin
.destroy
= (void(*)(plugin_t
*))destroy
;
43 charon
->eap
->add_method(charon
->eap
, EAP_MD5
, 0, EAP_SERVER
,
44 (eap_constructor_t
)eap_md5_create_server
);
45 charon
->eap
->add_method(charon
->eap
, EAP_MD5
, 0, EAP_PEER
,
46 (eap_constructor_t
)eap_md5_create_peer
);