wlan_bearer/wlanldd/wlan_common/umac_common/inc/umacdot11reassociationpending.inl
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2006-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:   Implementation of WlanDot11ReassociationPending inline 
       
    15 *                methods.
       
    16 *
       
    17 */
       
    18 
       
    19 /*
       
    20 * %version: 4 %
       
    21 */
       
    22 
       
    23 // -----------------------------------------------------------------------------
       
    24 // 
       
    25 // -----------------------------------------------------------------------------
       
    26 //
       
    27 inline WlanDot11ReassociationPending::WlanDot11ReassociationPending() : 
       
    28     iState( EINIT ) 
       
    29     {
       
    30     };
       
    31 
       
    32 // -----------------------------------------------------------------------------
       
    33 // 
       
    34 // -----------------------------------------------------------------------------
       
    35 //
       
    36 inline WlanDot11ReassociationPending::~WlanDot11ReassociationPending()
       
    37     {
       
    38     };
       
    39 
       
    40 // -----------------------------------------------------------------------------
       
    41 // 
       
    42 // -----------------------------------------------------------------------------
       
    43 //
       
    44 inline TBool WlanDot11ReassociationPending::Associated() const
       
    45     {
       
    46     return (iFlags & KReassocSuccess );
       
    47     }
       
    48 
       
    49 // -----------------------------------------------------------------------------
       
    50 // 
       
    51 // -----------------------------------------------------------------------------
       
    52 //
       
    53 inline void WlanDot11ReassociationPending::OnTxReassocFrameXferEvent( 
       
    54     WlanContextImpl& aCtxImpl )
       
    55     {
       
    56     ChangeInternalState( aCtxImpl, EWAIT4REASSOCIATIONRESPONSE );
       
    57     }
       
    58 
       
    59 // -----------------------------------------------------------------------------
       
    60 // 
       
    61 // -----------------------------------------------------------------------------
       
    62 //
       
    63 inline void WlanDot11ReassociationPending::ConfigureAc( 
       
    64     WlanContextImpl& aCtxImpl )
       
    65     {
       
    66     ConfigureAcParams( aCtxImpl );
       
    67     }
       
    68