eapol/eapol_framework/eapol_common/type/gsmsim/core/eap_type_gsmsim_state_notification.cpp
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 // This is enumeration of EAPOL source code.
       
    20 #if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
       
    21 	#undef EAP_FILE_NUMBER_ENUM
       
    22 	#define EAP_FILE_NUMBER_ENUM 84 
       
    23 	#undef EAP_FILE_NUMBER_DATE 
       
    24 	#define EAP_FILE_NUMBER_DATE 1127594498 
       
    25 #endif //#if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
       
    26 
       
    27 
       
    28 
       
    29 #include "eap_type_gsmsim_state_notification.h"
       
    30 #include "eap_type_gsmsim_types.h"
       
    31 #include "eap_tools.h"
       
    32 #include "eap_type_gsmsim.h"
       
    33 
       
    34 
       
    35 EAP_FUNC_EXPORT eap_type_gsmsim_state_notification_c::~eap_type_gsmsim_state_notification_c()
       
    36 {
       
    37 }
       
    38 
       
    39 EAP_FUNC_EXPORT eap_type_gsmsim_state_notification_c::eap_type_gsmsim_state_notification_c(
       
    40 	abs_eap_am_tools_c * const tools,
       
    41 	const eap_am_network_id_c * const send_network_id,
       
    42 	bool is_client,
       
    43 	eap_state_notification_generic_e type,
       
    44 	eap_protocol_layer_e layer,
       
    45 	u32_t protocol,
       
    46 	u32_t previous_state,
       
    47 	u32_t current_state,
       
    48 	u8_t eap_identifier,
       
    49 	bool allow_send_eap_success)
       
    50 	: eap_state_notification_c(
       
    51 		tools,
       
    52 		send_network_id,
       
    53 		is_client,
       
    54 		type,
       
    55 		layer,
       
    56 		protocol,
       
    57 		previous_state,
       
    58 		current_state,
       
    59 		eap_identifier,
       
    60 		allow_send_eap_success)
       
    61 {
       
    62 }
       
    63 
       
    64 
       
    65 #if defined(USE_EAP_EXPANDED_TYPES)
       
    66 
       
    67 EAP_FUNC_EXPORT eap_type_gsmsim_state_notification_c::eap_type_gsmsim_state_notification_c(
       
    68 	abs_eap_am_tools_c * const tools,
       
    69 	const eap_am_network_id_c * const send_network_id,
       
    70 	bool is_client,
       
    71 	eap_state_notification_eap_e type,
       
    72 	eap_protocol_layer_e layer,
       
    73 	eap_type_value_e eap_type,
       
    74 	u32_t previous_state,
       
    75 	u32_t current_state,
       
    76 	u8_t eap_identifier,
       
    77 	bool allow_send_eap_success)
       
    78 	: eap_state_notification_c(
       
    79 		tools,
       
    80 		send_network_id,
       
    81 		is_client,
       
    82 		type,
       
    83 		layer,
       
    84 		eap_type,
       
    85 		previous_state,
       
    86 		current_state,
       
    87 		eap_identifier,
       
    88 		allow_send_eap_success)
       
    89 {
       
    90 }
       
    91 
       
    92 #endif //#if defined(USE_EAP_EXPANDED_TYPES)
       
    93 
       
    94 
       
    95 EAP_FUNC_EXPORT eap_type_gsmsim_state_notification_c::eap_type_gsmsim_state_notification_c(
       
    96 	abs_eap_am_tools_c * const tools,
       
    97 	const eap_am_network_id_c * const send_network_id,
       
    98 	bool is_client,
       
    99 	eap_state_notification_eap_e type,
       
   100 	eap_protocol_layer_e layer,
       
   101 	eap_type_ietf_values_e eap_type,
       
   102 	u32_t previous_state,
       
   103 	u32_t current_state,
       
   104 	u8_t eap_identifier,
       
   105 	bool allow_send_eap_success)
       
   106 	: eap_state_notification_c(
       
   107 		tools,
       
   108 		send_network_id,
       
   109 		is_client,
       
   110 		type,
       
   111 		layer,
       
   112 		eap_type,
       
   113 		previous_state,
       
   114 		current_state,
       
   115 		eap_identifier,
       
   116 		allow_send_eap_success)
       
   117 {
       
   118 }
       
   119 
       
   120 //--------------------------------------------------
       
   121 
       
   122 // End.