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