equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-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 // |
|
15 |
|
16 #if !defined(__IP_BEARER_DATA_H__) |
|
17 #define __IP_BEARER_DATA_H__ |
|
18 |
|
19 #include <e32base.h> |
|
20 #include <e32std.h> |
|
21 #include <cdbcols.h> |
|
22 |
|
23 class CIpAddress; |
|
24 |
|
25 class CWapIpBearerData:public CBase |
|
26 /** |
|
27 @internalComponent |
|
28 @released |
|
29 */ |
|
30 { |
|
31 public: |
|
32 TUint iIapId; // Entry in IAP DIALOUT table |
|
33 CIpAddress* iGatewayAddr; // WAP_GATEWAY_ADDRESS - IP Proxy address |
|
34 TPtrC iPort; // Used to set WAP_SECURITY & WAP_WSP_OPTION in WAP_IP_BEARER table |
|
35 TPtrC iProxyAuthName; // Moved from CIspTableData |
|
36 TPtrC iProxyAuthSecret; // " " " |
|
37 TBool iProxyUseAutoLogin; |
|
38 |
|
39 public: |
|
40 static CWapIpBearerData* NewL(); |
|
41 static CWapIpBearerData* NewLC(); |
|
42 ~CWapIpBearerData(); |
|
43 private: |
|
44 void ConstructL(); |
|
45 }; |
|
46 |
|
47 #endif |