eapol/eapol_framework/eapol_common/type/securid/include/eap_type_securid_state.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:23:57 +0100
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201029 Kit: 201035

/*
* Copyright (c) 2001-2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  EAP and WLAN authentication protocols.
*
*/

/*
* %version: 9 %
*/

#ifndef EAP_TYPE_SECURID_STATE_H
#define EAP_TYPE_SECURID_STATE_H

#include "eap_am_export.h"

/**
 * This is the internal state of the SecurId and GTC EAP type.
 */
enum eap_type_securid_state_variable_e
{
	eap_type_securid_state_none,
	eap_type_securid_state_identity_query,

	eap_type_securid_state_passcode_query,
	eap_type_securid_state_pincode_query,
	eap_type_securid_state_success,
	eap_type_securid_state_failure,

	eap_type_securid_state_gtc_user_input_query,

	eap_type_securid_state_identity_response,
	eap_type_securid_state_passcode_response,

	eap_type_securid_state_gtc_response
};


class EAP_EXPORT eap_type_securid_state_c
{
private:

	bool m_is_client;
	eap_type_securid_state_variable_e m_state;
	eap_type_securid_state_variable_e m_next_state;
	eap_type_securid_state_variable_e m_prev_state;

public:
	eap_type_securid_state_c(const bool client);

	virtual ~eap_type_securid_state_c();

	eap_type_securid_state_variable_e get_state() const;

	void set_state(const eap_type_securid_state_variable_e new_state);

	void set_state(const eap_type_securid_state_variable_e new_state, const eap_type_securid_state_variable_e next_state);

	bool is_valid_state(const eap_type_securid_state_variable_e new_state) const;

	void set_failure_message_received();

	void unset_failure_message_received();

	void cancel_eap_failure_timer();
};


#endif // EAP_TYPE_SECURID_STATE_H

//--------------------------------------------------


// End.