Annotation of embedaddon/strongswan/src/libcharon/plugins/eap_ttls/eap_ttls_plugin.c, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2010 Andreas Steffen
                      3:  * HSR Hochschule fuer Technik Rapperswil
                      4:  *
                      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>.
                      9:  *
                     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
                     13:  * for more details.
                     14:  */
                     15: 
                     16: #include "eap_ttls_plugin.h"
                     17: 
                     18: #include "eap_ttls.h"
                     19: 
                     20: #include <daemon.h>
                     21: 
                     22: METHOD(plugin_t, get_name, char*,
                     23:        eap_ttls_plugin_t *this)
                     24: {
                     25:        return "eap-ttls";
                     26: }
                     27: 
                     28: METHOD(plugin_t, get_features, int,
                     29:        eap_ttls_plugin_t *this, plugin_feature_t *features[])
                     30: {
                     31:        static plugin_feature_t f[] = {
                     32:                PLUGIN_CALLBACK(eap_method_register, eap_ttls_create_server),
                     33:                        PLUGIN_PROVIDE(EAP_SERVER, EAP_TTLS),
                     34:                                PLUGIN_DEPENDS(EAP_SERVER, EAP_IDENTITY),
                     35:                                PLUGIN_DEPENDS(HASHER, HASH_MD5),
                     36:                                PLUGIN_DEPENDS(HASHER, HASH_SHA1),
                     37:                                PLUGIN_DEPENDS(RNG, RNG_WEAK),
                     38:                PLUGIN_CALLBACK(eap_method_register, eap_ttls_create_peer),
                     39:                        PLUGIN_PROVIDE(EAP_PEER, EAP_TTLS),
                     40:                                PLUGIN_DEPENDS(EAP_PEER, EAP_IDENTITY),
                     41:                                PLUGIN_DEPENDS(HASHER, HASH_MD5),
                     42:                                PLUGIN_DEPENDS(HASHER, HASH_SHA1),
                     43:                                PLUGIN_DEPENDS(RNG, RNG_WEAK),
                     44:                                PLUGIN_DEPENDS(RNG, RNG_STRONG),
                     45:        };
                     46:        *features = f;
                     47:        return countof(f);
                     48: }
                     49: 
                     50: METHOD(plugin_t, destroy, void,
                     51:        eap_ttls_plugin_t *this)
                     52: {
                     53:        free(this);
                     54: }
                     55: 
                     56: /*
                     57:  * see header file
                     58:  */
                     59: plugin_t *eap_ttls_plugin_create()
                     60: {
                     61:        eap_ttls_plugin_t *this;
                     62: 
                     63:        INIT(this,
                     64:                .plugin = {
                     65:                        .get_name = _get_name,
                     66:                        .get_features = _get_features,
                     67:                        .destroy = _destroy,
                     68:                },
                     69:        );
                     70: 
                     71:        return &this->plugin;
                     72: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>