1 | /* $Id: pxremap.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * NAT Network - Loopback remapping, declarations and definitions.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2013-2024 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 | #ifndef VBOX_INCLUDED_SRC_NAT_pxremap_h
|
---|
29 | #define VBOX_INCLUDED_SRC_NAT_pxremap_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include "lwip/err.h"
|
---|
35 | #include "lwip/ip_addr.h"
|
---|
36 |
|
---|
37 | struct netif;
|
---|
38 |
|
---|
39 |
|
---|
40 | #define PXREMAP_FAILED (-1)
|
---|
41 | #define PXREMAP_ASIS 0
|
---|
42 | #define PXREMAP_MAPPED 1
|
---|
43 |
|
---|
44 | /* IPv4 */
|
---|
45 | #if ARP_PROXY
|
---|
46 | int pxremap_proxy_arp(struct netif *netif, ip_addr_t *dst);
|
---|
47 | #endif
|
---|
48 | int pxremap_ip4_divert(struct netif *netif, ip_addr_t *dst);
|
---|
49 | int pxremap_outbound_ip4(ip_addr_t *dst, ip_addr_t *src);
|
---|
50 | int pxremap_inbound_ip4(ip_addr_t *dst, ip_addr_t *src);
|
---|
51 |
|
---|
52 | /* IPv6 */
|
---|
53 | int pxremap_proxy_na(struct netif *netif, ip6_addr_t *dst);
|
---|
54 | int pxremap_ip6_divert(struct netif *netif, ip6_addr_t *dst);
|
---|
55 | int pxremap_outbound_ip6(ip6_addr_t *dst, ip6_addr_t *src);
|
---|
56 | int pxremap_inbound_ip6(ip6_addr_t *dst, ip6_addr_t *src);
|
---|
57 |
|
---|
58 | #define pxremap_outbound_ipX(is_ipv6, dst, src) \
|
---|
59 | ((is_ipv6) ? pxremap_outbound_ip6(&(dst)->ip6, &(src)->ip6) \
|
---|
60 | : pxremap_outbound_ip4(&(dst)->ip4, &(src)->ip4))
|
---|
61 |
|
---|
62 | #endif /* !VBOX_INCLUDED_SRC_NAT_pxremap_h */
|
---|