|
1 // Copyright (c) 2008-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 // Activating mbms 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 TPdpStateActivatingMbms::Input (CPdpFsm& aFsm, const TInt aOperation, const TInt aErrorCode) |
|
30 { |
|
31 SPUDFSMVERBOSE_FNLOG("TPdpStateActivatingMbms::Input()"); |
|
32 SPUDFSMVERBOSE_LOG2(_L("aOperation : %S(%d)"), LogOperation(aFsm, aOperation), aOperation); |
|
33 |
|
34 switch (aOperation) |
|
35 { |
|
36 case PdpFsm::EPdpActivated: |
|
37 // When a mbms context is activated, the context status must be updated before sending the activated event |
|
38 // Normally this change in status is updated by a notify context status change event |
|
39 aFsm.Set(RPacketContext::EStatusActive); |
|
40 aFsm.ChangeStateToCreatedMbms();//there is no Qos to be set |
|
41 SpudManNotify (aFsm, KContextActivateEvent, KErrNone); |
|
42 return KErrNone; |
|
43 case PdpFsm::EPdpActivatedFailed: |
|
44 SPUDFSMVERBOSE_LOG(_L("*** FAILURE ***")); |
|
45 aFsm.ChangeStateToCreatedMbms(); |
|
46 SpudManNotify (aFsm, KContextActivateEvent, aErrorCode); |
|
47 return KErrNone; |
|
48 // no default |
|
49 } |
|
50 |
|
51 // default error handling |
|
52 return TPdpState::Input(aFsm, aOperation, aErrorCode); |
|
53 } |