eapol/eapol_framework/eapol_common/am/include/abs_eap_am_stack.h
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
child 55 9c2aa05919d9
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
     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 * %version: %
       
    20 */
       
    21 
       
    22 #if !defined(_ABS_EAP_AM_STACK_H_)
       
    23 #define _ABS_EAP_AM_STACK_H_
       
    24 
       
    25 #include "eap_tools.h"
       
    26 #include "eap_status.h"
       
    27 #include "eap_am_export.h"
       
    28 #include "eap_expanded_type.h"
       
    29 #include "eap_array.h"
       
    30 
       
    31 class abs_eap_am_message_if_c;
       
    32 class eap_configuration_field_c;
       
    33 class eap_variable_data_c;
       
    34 class abs_eap_am_tools_c;
       
    35 class abs_eap_base_type_c;
       
    36 class eap_base_type_c;
       
    37 class eap_am_network_id_c;
       
    38 
       
    39 /** @file */
       
    40 
       
    41 /// This class is the common part of EAP message interface.
       
    42 /// This class is interface to the message creation and parsing function.
       
    43 class EAP_EXPORT abs_eap_am_stack_c
       
    44 {
       
    45 
       
    46 private:
       
    47 
       
    48 	// ----------------------------------------------------------------------
       
    49 
       
    50 public:
       
    51 
       
    52 	virtual ~abs_eap_am_stack_c()
       
    53 	{
       
    54 	}
       
    55 
       
    56 	virtual eap_status_e complete_get_802_11_authentication_mode(
       
    57 		const eap_status_e completion_status,
       
    58 		const eap_am_network_id_c * const receive_network_id,
       
    59 		const eapol_key_802_11_authentication_mode_e mode) = 0;
       
    60 
       
    61 	// ----------------------------------------------------------------------
       
    62 };
       
    63 
       
    64 #endif //#if !defined(_ABS_EAP_AM_STACK_H_)
       
    65 
       
    66 
       
    67 //--------------------------------------------------
       
    68 // End