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