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 |
// Declarations for methods that create default various packet context related structures
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
/**
|
|
19 |
@file
|
|
20 |
@internalComponent
|
|
21 |
*/
|
|
22 |
|
|
23 |
#ifndef DEFAULT_CONTEXT_PARAMETERS
|
|
24 |
#define DEFAULT_CONTEXT_PARAMETERS
|
|
25 |
|
|
26 |
#include <networking/umtsnifcontrolif.h>
|
|
27 |
#include <etelpckt.h>
|
|
28 |
|
|
29 |
TName& SimTsyName();
|
|
30 |
|
|
31 |
void DefaultContextConfigGPRS(RPacketContext::TContextConfigGPRS& aParam);
|
|
32 |
|
|
33 |
void DefaultQoSR99_R4Requested(RPacketQoS::TQoSR99_R4Requested& aQosRequested);
|
|
34 |
void SecondQoSR99_R4Requested(RPacketQoS::TQoSR99_R4Requested& aQosRequested);
|
|
35 |
|
|
36 |
#ifdef SYMBIAN_NETWORKING_UMTSR5
|
|
37 |
void DefaultQoSR5Requested(RPacketQoS::TQoSR5Requested& aQosRequested);
|
|
38 |
void SecondQoSR5Requested(RPacketQoS::TQoSR5Requested& aQosRequested);
|
|
39 |
#endif
|
|
40 |
|
|
41 |
void DefaultQoSR99_R4Negotiated(RPacketQoS::TQoSR99_R4Negotiated& aQosNegotiated);
|
|
42 |
void SecondQoSR99_R4Negotiated(RPacketQoS::TQoSR99_R4Negotiated& aQosNegotiated);
|
|
43 |
|
|
44 |
void DefaultTftInfo(TTFTInfo& aTTFTInfo);
|
|
45 |
void SecondDefaultTftInfo(TTFTInfo& aTTFTInfo);
|
|
46 |
void CombinedDefaultTftInfo(TTFTInfo& aTTFTInfo);
|
|
47 |
void DefaultContextStatus(RPacketContext::TContextStatus& aStatus);
|
|
48 |
void DefaultServiceStatus(RPacketService::TStatus& aStatus);
|
|
49 |
void DefaultDataChannel(RPacketContext::TDataChannelV2& aDataChannel);
|
|
50 |
|
|
51 |
#endif
|
|
52 |
// DEFAULT_CONTEXT_PARAMETERS
|