telephonyprotocols/rawipnif/version1/inc/Constants.h
branchRCL_3
changeset 65 630d2f34d719
parent 61 17af172ffa5f
child 66 07a122eea281
--- a/telephonyprotocols/rawipnif/version1/inc/Constants.h	Thu Aug 19 11:03:36 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,86 +0,0 @@
-// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
-// All rights reserved.
-// This component and the accompanying materials are made available
-// under the terms of "Eclipse Public License v1.0"
-// which accompanies this distribution, and is available
-// at the URL "http://www.eclipse.org/legal/epl-v10.html".
-//
-// Initial Contributors:
-// Nokia Corporation - initial contribution.
-//
-// Contributors:
-//
-// Description:
-//
-
-/**
- @file
-*/
-
-#ifndef CONSTANTS_H
-#define CONSTANTS_H
-
-#include <e32base.h>
-#include <etelqos.h>
-
-const TUint KNifMajorVersionNumber=1;
-const TUint KNifMinorVersionNumber=0;
-const TUint KNifBuildVersionNumber=0;
-
-// For CommDb usage
-const TUint KSlashChar='\\';
-
-// Constants for IPv4 protocol interface
-_LIT(KDescIp, "ip");
-_LIT(KDescIcmp, "icmp");
-_LIT(KIPv4ProtocolIfName, "Bttint4");
-
-// Constants for IPv6 protocol interface
-_LIT(KDescIp6, "ip6");
-_LIT(KIPv6ProtocolIfName, "Bttint6");
-
-_LIT(KNifName, "rawipnif");
-enum TRawIPNifPanic
-    {
-	KNifUnknownInitState,
-	KNifUnknownShutDownState,
-	KNifProtocolInUse,
-	/** Bca in unkonwn State */
-	KBcaUnkownState,
-	/** BCA not exist*/
-	KBcaNotExist 	
-	};
-
-
-const TUint16 KIp4FrameType = 0x21;
-const TUint16 KVanJacCompTCPIPFrameType = 0x2d;
-const TUint16 KVanJacUnCompTCPIPFrameType = 0x2f;
-const TUint16 KIp6FrameType = 0x57;
-
-const TUint KDefaultSpeedMetric = 1;
-const TUint KDefaultMtu = 1500;
-
-const TUint KDataPacketMaxSize = 4096;
-
-// BTT TSY contants
-const TInt KTsyPhone = 0;
-
-// Flow control constants
-const TInt KStopSending		= 0;
-const TInt KContinueSending	= 1;
-
-_LIT(KRawIPNifName, "RawIP");
-
-// constants for diagnostic logging
-_LIT8(KNifSubDir, "RawIp"); 
-_LIT8(KRefFile, "RawIP.txt"); 
-
-// Max size of IP packet 
-const TInt KMaxIPPacket = 1500;
-const TInt KIPTagHeaderLength = 2;
-const TInt KMaxIPPacketAndHeader = KMaxIPPacket + KIPTagHeaderLength;
-
-const TInt KIPTagHeaderByte1 = 0x00;
-const TInt KIPTagHeaderByte2 = 0x21;
-
-#endif	//CONSTANTS_H