telephonyprotocols/umtsgprsscpr/spudfsm/src/tpdpstatesettingqos.cpp
changeset 68 d0d9cc530d21
parent 62 8ef833fbf5aa
child 75 f45cd1ad4667
equal deleted inserted replaced
62:8ef833fbf5aa 68:d0d9cc530d21
     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 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 TPdpStateSettingQoS::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode)
       
    30 {
       
    31 	SPUDFSMVERBOSE_FNLOG("TPdpStateSettingQoS::Input()");
       
    32 	SPUDFSMVERBOSE_LOG2(_L("aOperation : %S(%d)"), LogOperation(aFsm, aOperation), aOperation);
       
    33 
       
    34 	switch (aOperation)
       
    35 	{
       
    36 	case PdpFsm::EQoSSet:
       
    37 		aFsm.ChangeStateToCreatedSecondary();
       
    38 		SpudManNotify(aFsm, KContextQoSSetEvent, KErrNone);
       
    39 		return KErrNone;
       
    40 	case PdpFsm::EQoSSetFailed:
       
    41 		aFsm.ChangeStateToCreatedSecondary();
       
    42 		SpudManNotify(aFsm, KContextQoSSetEvent, aErrorCode);
       
    43 		return KErrNone;
       
    44 	}
       
    45 	
       
    46 	// default error handling
       
    47 	return TPdpState::Input(aFsm, aOperation, aErrorCode);
       
    48 }
       
    49 
       
    50