equal
deleted
inserted
replaced
|
1 // Copyright (c) 2001-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 |
|
17 |
|
18 #ifndef __TESTSERVERS_H__ |
|
19 #define __TESTSERVERS_H__ |
|
20 /** This file contains definitions for test servers used for acceptance testing for http |
|
21 |
|
22 |
|
23 |
|
24 */ |
|
25 |
|
26 |
|
27 |
|
28 #define __HTTP_SERVER_IP _LIT8(KHttpTestServer, "http://10.29.23.4"); |
|
29 #define __HTTP_SERVER_NTRAS _LIT8(KHttpTestServer, "http://10.29.23.12"); |
|
30 #define __HTTP_SERVER_DIALIN _LIT8(KHttpTestServer, "http://10.29.23.12"); |
|
31 |
|
32 /** Following are virtual hosts |
|
33 |
|
34 |
|
35 */ |
|
36 |
|
37 |
|
38 |
|
39 |
|
40 //#define __HTTP_TESTSERVER(_leaf) __HTTP_SERVER_DIALIN _LIT8(KUrlEnd, _leaf); TBuf8<256> uri(KHttpTestServer); uri.Append(KUrlEnd); |
|
41 |
|
42 //#define __HTTP_TESTSERVER(_leaf) __HTTP_SERVER_NTRAS _LIT8(KUrlEnd, _leaf); TBuf8<256> uri(KHttpTestServer); uri.Append(KUrlEnd); |
|
43 |
|
44 #define __HTTP_TESTSERVER(_leaf) __HTTP_SERVER_IP _LIT8(KUrlEnd, _leaf); TBuf8<256> uri(KHttpTestServer); uri.Append(KUrlEnd); |
|
45 |
|
46 |
|
47 #endif // __TESTSERVERS_H__ |