diff -r 000000000000 -r c40eb8fe8501 wlan_bearer/wlanldd/wlan_common/umac_common/inc/UmacDot11OpenAuthPending.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wlan_bearer/wlanldd/wlan_common/umac_common/inc/UmacDot11OpenAuthPending.h Tue Feb 02 02:03:13 2010 +0200 @@ -0,0 +1,121 @@ +/* +* Copyright (c) 2002-2005 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: Declaration of the WlanDot11OpenAuthPending class +* +*/ + +/* +* %version: 14 % +*/ + +#ifndef WLANDOT11OPENAUTHPENDING_H +#define WLANDOT11OPENAUTHPENDING_H + +#include "UmacDot11AuthenticatePending.h" + +/** +* A class that implements dot11 open mode authentication frame exchange. +* This is a state where authentication request has been send +* to an AP and response to it is waited. +* +* @lib wlanumac.lib +* @since S60 v3.1 +*/ +class WlanDot11OpenAuthPending : public WlanDot11AuthenticatePending + { +public: + + /** + * C++ default constructor. + */ + WlanDot11OpenAuthPending() {}; + + /** + * Destructor. + */ + virtual ~WlanDot11OpenAuthPending() {}; + +protected: + + // Functions from base classes + + /** + * From ?base_class ?member_description. + * Sets the used authentication number to authenticate message + * @since S60 3.1 + * @param aCtxImpl global statemachine context + */ + virtual void OnSetAlgorithmNumber( WlanContextImpl& aCtxImpl ); + + /** + * From ?base_class ?member_description. + * Returns the states name + * @since S60 3.1 + * @param aLength (OUT) length of the name of the state + * @return name of the state + */ +#ifndef NDEBUG + virtual const TInt8* GetStateName( TUint8& aLength ) const; +#endif // !NDEBUG + + /** + * From ?base_class ?member_description. + * @since S60 3.1 + * @param aCtxImpl global statemachine context + * @param aRcpi RCPI of the frame + * @param aFlags flags from WHA frame receive method + * @param aBuffer pointer to the beginning of the Rx buffer allocated + * for the frame + */ + virtual void OnReceiveFrameSuccess( + WlanContextImpl& aCtxImpl, + const void* aFrame, + TUint16 aLength, + WHA::TRcpi aRcpi, + TUint32 aFlags, + TUint8* aBuffer ); + + /** + * From ?base_class ?member_description. + * @since S60 3.1 + * @param aCtxImpl global statemachine context + */ + virtual void OnStateEntryEvent( WlanContextImpl& aCtxImpl ); + + /** + * From ?base_class ?member_description. + * @since S60 3.1 + * @param aCtxImpl global statemachine context + */ + virtual void OnRxAuthResponseEvent( WlanContextImpl& aCtxImpl ); + +private: + + // Prohibit copy constructor + WlanDot11OpenAuthPending( + const WlanDot11OpenAuthPending& ); + // Prohibit assigment operator + WlanDot11OpenAuthPending& operator= ( + const WlanDot11OpenAuthPending& ); + +protected: // Data + +#ifndef NDEBUG + /** name of the state */ + static const TInt8 iName[]; +#endif // !NDEBUG + }; + +#endif // WLANDOT11OPENAUTHPENDING_H +