|
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 // Common header for pdp FSM |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 */ |
|
22 |
|
23 #ifndef PDPFSMNMSPACE_H |
|
24 #define PDPFSMNMSPACE_H |
|
25 |
|
26 namespace PdpFsm |
|
27 { |
|
28 |
|
29 /** completion and notification signals */ |
|
30 enum TEtelSignal |
|
31 { |
|
32 EPhoneOpened, |
|
33 EPhoneOpenedFailed, |
|
34 |
|
35 EQoSSet, |
|
36 EQoSSetFailed, |
|
37 ETftSet, |
|
38 ETftSetFailed, |
|
39 ETftChanged, |
|
40 ETftChangedFailed, |
|
41 |
|
42 E1ryPdpContextCreated, |
|
43 E1ryPdpContextCreatedFailed, |
|
44 E2ryPdpContextCreated, |
|
45 E2ryPdpContextCreatedFailed, |
|
46 |
|
47 EPdpContextModified, |
|
48 EPdpContextModifiedFailed, |
|
49 EPdpActivated, |
|
50 EPdpActivatedFailed, |
|
51 EContextDeleted, |
|
52 EContextDeletedFailed, |
|
53 // add new signals here |
|
54 |
|
55 // network signals |
|
56 EQoSProfileChangeNetwork, |
|
57 EConfigGPRSChangeNetwork, |
|
58 EContextStatusChangeNetwork, |
|
59 EServiceStatusChangeNetwork, |
|
60 EPacketStatusChangeNetwork, |
|
61 // add new signals here |
|
62 |
|
63 ESentinelSignal |
|
64 }; |
|
65 |
|
66 } // namespace PdpFsm |
|
67 |
|
68 |
|
69 #endif // PDPFSMNMSPACE_H |