equal
deleted
inserted
replaced
|
1 // Copyright (c) 1997-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 // Obsolete TCP/IP header file |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file in_std.h |
|
20 @internalComponent |
|
21 @deprecated This file originates from an obsolete implementation of the TCP/IP stack |
|
22 */ |
|
23 |
|
24 #ifndef __IN_STD_H__ |
|
25 #define __IN_STD_H__ |
|
26 |
|
27 #include <nifmbuf.h> |
|
28 |
|
29 // Added from INET.H and TCP.H as they are needed in VJCOMP |
|
30 |
|
31 // Room for all layer of headers |
|
32 const TUint KInetMaxHeaderSize = 128; |
|
33 |
|
34 const TUint KTcpFIN = 0x01; |
|
35 const TUint KTcpSYN = 0x02; |
|
36 const TUint KTcpRST = 0x04; |
|
37 const TUint KTcpPSH = 0x08; |
|
38 const TUint KTcpACK = 0x10; |
|
39 const TUint KTcpURG = 0x20; |
|
40 const TUint KTcpECN = 0xc0; // RFC 3168 |
|
41 |
|
42 class CNifIfBase; |
|
43 class RMBufRecvInfo : public RMBufPktInfo |
|
44 { |
|
45 public: |
|
46 CNifIfBase* iInterface; |
|
47 }; |
|
48 |
|
49 #endif |