diff -r 000000000000 -r 3553901f7fa8 telephonyprotocols/pdplayer/umts/spudfsm/src/tpdpstateactivatingsecondary.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telephonyprotocols/pdplayer/umts/spudfsm/src/tpdpstateactivatingsecondary.cpp Tue Feb 02 01:41:59 2010 +0200 @@ -0,0 +1,56 @@ +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "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: +// Activating secondary context state +// +// + +/** + @file + @internalComponent +*/ + +#include +#include "tpdpstates.h" +#include "spudfsmdebuglogger.h" +#include "pdpfsmnmspace.h" +#include "cpdpfsm.h" + +TInt TPdpStateActivatingSecondary::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode) +{ + SPUDFSMVERBOSE_FNLOG("TPdpStateActivatingSecondary::Input()"); + SPUDFSMVERBOSE_LOG2(_L("aOperation : %S(%d)"), LogOperation(aFsm, aOperation), aOperation); + + switch (aOperation) + { + case PdpFsm::EPdpActivated: + // When a secondary context is activated, the context status must be updated before sending the activated event + // Normally this change in status is updated by a notify context status change event + aFsm.Set(RPacketContext::EStatusActive); + aFsm.ChangeStateToGettingNegQoS(); // Context was activated, but we don't necessarily have negotiated QoS yet; + // a TSY might wait for a successfull activation to report it to Etel. + SpudManNotify (aFsm, KContextActivateEvent, KErrNone); + return KErrNone; + case PdpFsm::EPdpActivatedFailed: + SPUDFSMVERBOSE_LOG(_L("*** FAILURE ***")); + aFsm.ChangeStateToCreatedSecondary(); + SpudManNotify (aFsm, KContextActivateEvent, aErrorCode); + return KErrNone; + // no default + } + + // default error handling + return TPdpState::Input(aFsm, aOperation, aErrorCode); +} + +