Annotation of embedaddon/strongswan/src/libcharon/plugins/eap_radius/eap_radius_plugin.h, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2009 Martin Willi
                      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: /**
                     17:  * @defgroup eap_radius eap_radius
                     18:  * @ingroup cplugins
                     19:  *
                     20:  * @defgroup eap_radius_plugin eap_radius_plugin
                     21:  * @{ @ingroup eap_radius
                     22:  */
                     23: 
                     24: #ifndef EAP_RADIUS_PLUGIN_H_
                     25: #define EAP_RADIUS_PLUGIN_H_
                     26: 
                     27: #include <plugins/plugin.h>
                     28: 
                     29: #include <radius_client.h>
                     30: #include <daemon.h>
                     31: 
                     32: typedef struct eap_radius_plugin_t eap_radius_plugin_t;
                     33: 
                     34: /**
                     35:  * EAP RADIUS proxy plugin.
                     36:  *
                     37:  * This plugin provides not a single EAP method, but a proxy to forward
                     38:  * EAP packets to a RADIUS server. It only provides server implementations.
                     39:  */
                     40: struct eap_radius_plugin_t {
                     41: 
                     42:        /**
                     43:         * implements plugin interface
                     44:         */
                     45:        plugin_t plugin;
                     46: };
                     47: 
                     48: /**
                     49:  * Get a RADIUS client instance to connect to servers.
                     50:  *
                     51:  * @return                     RADIUS client
                     52:  */
                     53: radius_client_t *eap_radius_create_client();
                     54: 
                     55: /**
                     56:  * Handle a RADIUS request timeout.
                     57:  *
                     58:  * If an IKE_SA is given, it gets deleted (unless the policy says to delete
                     59:  * any established IKE_SA).
                     60:  *
                     61:  * @param id           associated IKE_SA where timeout happened, or NULL
                     62:  */
                     63: void eap_radius_handle_timeout(ike_sa_id_t *id);
                     64: 
                     65: #endif /** EAP_RADIUS_PLUGIN_H_ @}*/

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