eapol/eapol_framework/eapol_common/am/include/abs_eap_am_type_leap.h
changeset 0 c8830336c852
child 2 1c7bc153c08e
equal deleted inserted replaced
-1:000000000000 0:c8830336c852
       
     1 /*
       
     2 * Copyright (c) 2001-2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  EAP and WLAN authentication protocols.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef ABS_EAP_AM_TYPE_LEAP_H
       
    21 #define ABS_EAP_AM_TYPE_LEAP_H
       
    22 
       
    23 // INCLUDES
       
    24 #include "eap_type_leap_types.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /// This class declares the functions adaptation module of LEAP type
       
    29 /// requires from the LEAP EAP type.
       
    30 class EAP_EXPORT abs_eap_am_type_leap_c
       
    31 {
       
    32 private:
       
    33 
       
    34 protected:
       
    35 
       
    36 public:
       
    37 
       
    38 	virtual ~abs_eap_am_type_leap_c()
       
    39 	{
       
    40 	}
       
    41 
       
    42 	abs_eap_am_type_leap_c()
       
    43 	{
       
    44 	}
       
    45 
       
    46 	virtual bool get_is_client() = 0;
       
    47 
       
    48 	virtual eap_status_e complete_eap_identity_query() = 0;
       
    49 
       
    50 	virtual eap_status_e client_complete_challenge_request() = 0;
       
    51 
       
    52 	virtual eap_status_e finish_unsuccessful_authentication(
       
    53 		const bool authentication_cancelled) = 0;
       
    54 
       
    55 }; // class abs_eap_am_type_leap_c
       
    56 
       
    57 #endif // ABS_EAP_AM_TYPE_LEAP_H
       
    58 
       
    59 // End of File