wlan_bearer/wlanldd/wlan_common/umac_common/inc/UmacDot11OpenAuthPending.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 21 Jun 2010 17:43:00 +0300
branchRCL_3
changeset 14 13838cf40350
parent 0 c40eb8fe8501
permissions -rw-r--r--
Revision: 201023 Kit: 2010125

/*
* 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