/* * eap_ttls.h * * Version: $Id$ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * * Copyright 2003 Alan DeKok * Copyright 2006 The FreeRADIUS server project */ #ifndef _EAP_TTLS_H #define _EAP_TTLS_H RCSIDH(eap_ttls_h, "$Id$") #include "eap_tls.h" typedef struct ttls_tunnel_t { VALUE_PAIR *username; VALUE_PAIR *state; VALUE_PAIR *accept_vps; bool authenticated; int default_method; bool copy_request_to_tunnel; bool use_tunneled_reply; char const *virtual_server; } ttls_tunnel_t; /* * Process the TTLS portion of an EAP-TTLS request. */ int eapttls_process(eap_handler_t *handler, tls_session_t *tls_session) CC_HINT(nonnull); #endif /* _EAP_TTLS_H */