telephonyprotocols/umtsgprsscpr/spudfsm/src/tpdpstatesettingqosprimary.cpp
changeset 64 b34bb05ac869
parent 56 ab72d5c1d770
equal deleted inserted replaced
56:ab72d5c1d770 64:b34bb05ac869
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Setting QoS on primary context state
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file 
       
    20  @internalComponent
       
    21 */
       
    22  
       
    23 #include <networking\UmtsNifControlIf.h>
       
    24 #include "tpdpstates.h"
       
    25 #include "spudfsmdebuglogger.h"
       
    26 #include "pdpfsmnmspace.h"
       
    27 #include "cpdpfsm.h"
       
    28 
       
    29 TInt TPdpStateSettingQoSPrimary::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode)
       
    30 {
       
    31 	SPUDFSMVERBOSE_FNLOG("TPdpStateSettingQoSPrimary::Input()");
       
    32 	SPUDFSMVERBOSE_LOG2(_L("aOperation : %S(%d)"), LogOperation(aFsm, aOperation), aOperation);
       
    33 
       
    34 	switch (aOperation)
       
    35 	{
       
    36 	case PdpFsm::EQoSSet:
       
    37 		aFsm.ChangeStateToActivatingPrimary();
       
    38 		EtelDriverInput(aFsm, EtelDriver::EActivatePdp);
       
    39 		return KErrNone;
       
    40 	case PdpFsm::EQoSSetFailed:
       
    41 		aFsm.ChangeStateToClosing();
       
    42 		SpudManNotify (aFsm, KPrimaryContextCreated, aErrorCode); // or is it KContextActivateEvent?
       
    43 		EtelDriverInput(aFsm, EtelDriver::EContextDelete);
       
    44 		return KErrNone;
       
    45 	}
       
    46 	
       
    47 	// default error handling
       
    48 	return TPdpState::Input(aFsm, aOperation, aErrorCode);
       
    49 }
       
    50 
       
    51