VirtualBox

source: vbox/trunk/src/VBox/Devices/Network/slirp/if.h

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1/* $Id: if.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * NAT - if_*.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28/*
29 * This code is based on:
30 *
31 * Copyright (c) 1995 Danny Gasparovski.
32 *
33 * Please read the file COPYRIGHT for the
34 * terms and conditions of the copyright.
35 */
36
37#ifndef _IF_H_
38#define _IF_H_
39
40#define IF_COMPRESS 0x01 /* We want compression */
41#define IF_NOCOMPRESS 0x02 /* Do not do compression */
42#define IF_AUTOCOMP 0x04 /* Autodetect (default) */
43#define IF_NOCIDCOMP 0x08 /* CID compression */
44
45
46#ifdef ETH_P_ARP
47# undef ETH_P_ARP
48#endif /* ETH_P_ARP*/
49#define ETH_P_ARP 0x0806 /* Address Resolution packet */
50
51#ifdef ETH_P_IP
52# undef ETH_P_IP
53#endif /* ETH_P_IP */
54#define ETH_P_IP 0x0800 /* Internet Protocol packet */
55
56#ifdef ETH_P_IPV6
57# undef ETH_P_IPV6
58#endif /* ETH_P_IPV6 */
59#define ETH_P_IPV6 0x86DD /* IPv6 */
60
61#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use