Last change
on this file since 34244 was 30016, checked in by vboxsync, 14 years ago |
NAT: clean up.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.4 KB
|
Line | |
---|
1 | /* $Id: if.h 30016 2010-06-03 18:31:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT - if_*.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*
|
---|
19 | * This code is based on:
|
---|
20 | *
|
---|
21 | * Copyright (c) 1995 Danny Gasparovski.
|
---|
22 | *
|
---|
23 | * Please read the file COPYRIGHT for the
|
---|
24 | * terms and conditions of the copyright.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef _IF_H_
|
---|
28 | #define _IF_H_
|
---|
29 |
|
---|
30 | #define IF_COMPRESS 0x01 /* We want compression */
|
---|
31 | #define IF_NOCOMPRESS 0x02 /* Do not do compression */
|
---|
32 | #define IF_AUTOCOMP 0x04 /* Autodetect (default) */
|
---|
33 | #define IF_NOCIDCOMP 0x08 /* CID compression */
|
---|
34 |
|
---|
35 |
|
---|
36 | #ifdef ETH_P_ARP
|
---|
37 | # undef ETH_P_ARP
|
---|
38 | #endif /* ETH_P_ARP*/
|
---|
39 | #define ETH_P_ARP 0x0806 /* Address Resolution packet */
|
---|
40 |
|
---|
41 | #ifdef ETH_P_IP
|
---|
42 | # undef ETH_P_IP
|
---|
43 | #endif /* ETH_P_IP */
|
---|
44 | #define ETH_P_IP 0x0800 /* Internet Protocol packet */
|
---|
45 |
|
---|
46 | #ifdef ETH_P_IPV6
|
---|
47 | # undef ETH_P_IPV6
|
---|
48 | #endif /* ETH_P_IPV6 */
|
---|
49 | #define ETH_P_IPV6 0x86DD /* IPv6 */
|
---|
50 |
|
---|
51 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.