|
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 // etel driver namespace |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 */ |
|
22 |
|
23 #ifndef ETELDRIVERNMSPACE_H |
|
24 #define ETELDRIVERNMSPACE_H |
|
25 |
|
26 namespace EtelDriver |
|
27 { |
|
28 |
|
29 /** input operations, which are handled by etel driver input */ |
|
30 enum TEtelInput |
|
31 { |
|
32 EOpenPhone, |
|
33 |
|
34 ESetQoS, |
|
35 ESetTft, |
|
36 EChangeTft, |
|
37 ECreate1ryPdpContext, |
|
38 ECreate2ryPdpContext, |
|
39 ECreateMbmsPdpContext, |
|
40 ESessionUpdate, |
|
41 |
|
42 EActivatePdp, |
|
43 ENegQoSGet, |
|
44 EModifyActive, |
|
45 EContextDelete, |
|
46 EActivateMbmsPdp, |
|
47 |
|
48 ESentinelInput |
|
49 }; |
|
50 |
|
51 /** input operations, which are handled by etel driver input */ |
|
52 enum TEtelDriverStrategy |
|
53 { |
|
54 EOpenPhoneStrategy = 0, |
|
55 |
|
56 ESetQoSStrategy, |
|
57 ESetTftStrategy, |
|
58 EChangeTftStrategy, |
|
59 |
|
60 ECreate1ryPdpContextStrategy, |
|
61 ECreate2ryPdpContextStrategy, |
|
62 ECreateMbmsPdpContextStrategy, |
|
63 ESessionUpdateStrategy, |
|
64 |
|
65 EActivateMbmsPdpStrategy, |
|
66 EActivatePdpStrategy, |
|
67 EGetNegQoSStrategy, |
|
68 EModifyActiveStrategy, |
|
69 EContextDeleteStrategy, |
|
70 |
|
71 ESentinelStrategy |
|
72 }; |
|
73 |
|
74 typedef TPckg<RPacketQoS::TQoSR99_R4Requested> TQoSR99_R4RequestedPckg; |
|
75 typedef TPckg<RPacketQoS::TQoSR99_R4Negotiated> TQoSR99_R4NegotiatedPckg; |
|
76 |
|
77 #ifdef SYMBIAN_NETWORKING_UMTSR5 |
|
78 typedef TPckg<RPacketQoS::TQoSR5Requested> TQoSR5RequestedPckg; |
|
79 typedef TPckg<RPacketQoS::TQoSR5Negotiated> TQoSR5NegotiatedPckg; |
|
80 #endif |
|
81 // SYMBIAN_NETWORKING_UMTSR5 |
|
82 |
|
83 typedef TPckg<RPacketContext::TContextConfigGPRS> TContextConfigGPRSPckg; |
|
84 typedef TPckg<RPacketContext::TPacketFilterV2> TPacketFilterV2Pckg; |
|
85 typedef TPckg<RPacketMbmsContext::TContextConfigMbmsV1> TContextConfigMbmsV1Pckg; |
|
86 |
|
87 |
|
88 _LIT(KTxtSpudTel, "SPUDTEL"); |
|
89 |
|
90 } // namespace EtelDriver |
|
91 |
|
92 |
|
93 #endif // ETELDRIVERNMSPACE_H |