eapol/eapol_framework/eapol_common/wpxstub/ethernet_core_wpxm_stub.cpp
branchRCL_3
changeset 19 c74b3d9f6b9e
parent 18 bad0cc58d154
equal deleted inserted replaced
18:bad0cc58d154 19:c74b3d9f6b9e
    14 * Description:  EAP and WLAN authentication protocols.
    14 * Description:  EAP and WLAN authentication protocols.
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 /*
    18 /*
    19 * %version: %
    19 * %version: 6.1.3 %
    20 */
    20 */
    21 
    21 
    22 // This is enumeration of EAPOL source code.
    22 // This is enumeration of EAPOL source code.
    23 #if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
    23 #if defined(USE_EAP_MINIMUM_RELEASE_TRACES)
    24 	#undef EAP_FILE_NUMBER_ENUM
    24 	#undef EAP_FILE_NUMBER_ENUM
    40 
    40 
    41 //--------------------------------------------------
    41 //--------------------------------------------------
    42 
    42 
    43 //
    43 //
    44 EAP_FUNC_EXPORT eap_status_e ethernet_core_c::start_WPXM_reassociation(
    44 EAP_FUNC_EXPORT eap_status_e ethernet_core_c::start_WPXM_reassociation(
    45 	const eap_am_network_id_c * const /* receive_network_id */,
    45 	const eap_am_network_id_c * const receive_network_id,
    46 	const eapol_key_authentication_type_e /* authentication_type */,
    46 	const eapol_key_authentication_type_e authentication_type,
    47 	eap_variable_data_c * const /* send_reassociation_request_ie */)
    47 	eap_variable_data_c * const send_reassociation_request_ie)
    48 {
    48 {
       
    49 	eap_status_e status = m_eapol_core->start_WPXM_reassociation(
       
    50 		receive_network_id,
       
    51 		authentication_type,
       
    52 		send_reassociation_request_ie);
       
    53 
    49 	return EAP_STATUS_RETURN(m_am_tools, eap_status_not_supported);
    54 	return EAP_STATUS_RETURN(m_am_tools, eap_status_not_supported);
    50 }
    55 }
    51 
    56 
    52 //--------------------------------------------------
    57 //--------------------------------------------------
    53 
    58 
    54 //
    59 //
    55 EAP_FUNC_EXPORT eap_status_e ethernet_core_c::complete_WPXM_reassociation(
    60 EAP_FUNC_EXPORT eap_status_e ethernet_core_c::complete_WPXM_reassociation(
    56 	const eapol_wlan_authentication_state_e /* reassociation_result */,
    61 	const eapol_wlan_authentication_state_e reassociation_result,
    57 	const eap_am_network_id_c * const /* receive_network_id */,
    62 	const eap_am_network_id_c * const receive_network_id,
    58 	const eapol_key_authentication_type_e /* authentication_type */,
    63 	const eapol_key_authentication_type_e authentication_type,
    59 	const eap_variable_data_c * const /* received_reassociation_ie */)
    64 	const eap_variable_data_c * const received_reassociation_ie)
    60 {
    65 {
       
    66 	eap_status_e status = m_eapol_core->complete_WPXM_reassociation(
       
    67 		reassociation_result,
       
    68 		receive_network_id,
       
    69 		authentication_type,
       
    70 		received_reassociation_ie);
       
    71 
    61 	return EAP_STATUS_RETURN(m_am_tools, eap_status_not_supported);
    72 	return EAP_STATUS_RETURN(m_am_tools, eap_status_not_supported);
    62 }
    73 }
    63 
    74 
    64 //--------------------------------------------------
    75 //--------------------------------------------------
    65 
    76