|
1 /* |
|
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: CIR CONSTANTS |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __CIRWATCHERDEFINES__ |
|
21 #define __CIRWATCHERDEFINES__ |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32base.h> |
|
25 |
|
26 //TCP CIR CONSTANTS |
|
27 _LIT( KTcpLogDir, "ImpsTcpWatcher" ); |
|
28 _LIT( KTcpWatcherLogFile, "TcpWatcher.txt" ); |
|
29 _LIT( KHELOMessage, "HELO " ); |
|
30 _LIT( KMessageTermination, "\r\n" ); |
|
31 _LIT8( KImpsPingData, "PING\r\n" ); |
|
32 _LIT8( KImpsPingResponseOK, "OK" ); |
|
33 _LIT8( KImpsPingResponseWVCI, "WVCI" ); |
|
34 const TInt KTcpLogBufferMaxSize = 2000; |
|
35 |
|
36 //UDP CIR CONSTANTS |
|
37 const TInt KUdpLogBufferMaxSize = 2000; |
|
38 _LIT( KUdpLogDir, "ImpsUdpWatcher" ); |
|
39 _LIT( KUdpWatcherLogFile, "UdpWatcher.txt" ); |
|
40 |
|
41 //FORWARD DECLARATIONS |
|
42 class MImpsCirReceiver; |
|
43 class MImpsConnectionManager; |
|
44 |
|
45 #endif |
|
46 |
|
47 // End of File |