|
1 // Copyright (c) 2005-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 |
|
40 EActivatePdp, |
|
41 EModifyActive, |
|
42 EContextDelete, |
|
43 |
|
44 ESentinelInput |
|
45 }; |
|
46 |
|
47 /** input operations, which are handled by etel driver input */ |
|
48 enum TEtelDriverStrategy |
|
49 { |
|
50 EOpenPhoneStrategy = 0, |
|
51 |
|
52 ESetQoSStrategy, |
|
53 ESetTftStrategy, |
|
54 EChangeTftStrategy, |
|
55 |
|
56 ECreate1ryPdpContextStrategy, |
|
57 ECreate2ryPdpContextStrategy, |
|
58 |
|
59 EActivatePdpStrategy, |
|
60 EModifyActiveStrategy, |
|
61 EContextDeleteStrategy, |
|
62 |
|
63 ESentinelStrategy |
|
64 }; |
|
65 |
|
66 typedef TPckg<RPacketQoS::TQoSR99_R4Requested> TQoSR99_R4RequestedPckg; |
|
67 typedef TPckg<RPacketQoS::TQoSR99_R4Negotiated> TQoSR99_R4NegotiatedPckg; |
|
68 |
|
69 |
|
70 #ifdef SYMBIAN_NETWORKING_UMTSR5 |
|
71 typedef TPckg<RPacketQoS::TQoSR5Requested> TQoSR5RequestedPckg; |
|
72 typedef TPckg<RPacketQoS::TQoSR5Negotiated> TQoSR5NegotiatedPckg; |
|
73 #endif |
|
74 // SYMBIAN_NETWORKING_UMTSR5 |
|
75 |
|
76 typedef TPckg<RPacketContext::TContextConfigGPRS> TContextConfigGPRSPckg; |
|
77 typedef TPckg<RPacketContext::TPacketFilterV2> TPacketFilterV2Pckg; |
|
78 |
|
79 _LIT(KTxtSpudTel, "SPUDTEL"); |
|
80 |
|
81 } // namespace EtelDriver |
|
82 |
|
83 |
|
84 #endif // ETELDRIVERNMSPACE_H |