VirtualBox

source: vbox/trunk/src/VBox/NetworkServices/NAT/proxy.h@ 87620

Last change on this file since 87620 was 87620, checked in by vboxsync, 4 years ago

NAT/Net: Get IPv4 settings from the API, not from the command line
(but for now cross check that they are the same). The command line
settings will be gone soon. bugref:9929.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 2.9 KB
Line 
1/* $Id: proxy.h 87620 2021-02-05 03:48:44Z vboxsync $ */
2/** @file
3 * NAT Network - common definitions and declarations.
4 */
5
6/*
7 * Copyright (C) 2013-2020 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#ifndef VBOX_INCLUDED_SRC_NAT_proxy_h
19#define VBOX_INCLUDED_SRC_NAT_proxy_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#if !defined(VBOX)
25#include "vbox-compat.h"
26#endif
27
28#include "lwip/err.h"
29#include "lwip/ip_addr.h"
30#include "winutils.h"
31
32/* forward */
33struct netif;
34struct tcpip_msg;
35struct pbuf;
36struct sockaddr;
37struct sockaddr_in;
38struct sockaddr_in6;
39
40struct ip4_lomap
41{
42 ip_addr_t loaddr;
43 uint32_t off;
44};
45
46struct ip4_lomap_desc
47{
48 const struct ip4_lomap *lomap;
49 unsigned int num_lomap;
50};
51
52struct proxy_options {
53 ip_addr_t ipv4_addr;
54 ip_addr_t ipv4_mask;
55 int ipv6_enabled;
56 int ipv6_defroute;
57 SOCKET icmpsock4;
58 SOCKET icmpsock6;
59 const char *tftp_root;
60 const struct sockaddr_in *src4;
61 const struct sockaddr_in6 *src6;
62 const struct ip4_lomap_desc *lomap_desc;
63 const char **nameservers;
64};
65
66extern volatile struct proxy_options *g_proxy_options;
67extern struct netif *g_proxy_netif;
68
69void proxy_init(struct netif *, struct proxy_options *);
70SOCKET proxy_connected_socket(int, int, ipX_addr_t *, u16_t);
71SOCKET proxy_bound_socket(int, int, struct sockaddr *);
72#ifdef RT_OS_LINUX
73int proxy_fixup_accepted_socket(SOCKET);
74#endif
75void proxy_reset_socket(SOCKET);
76int proxy_sendto(SOCKET, struct pbuf *, void *, size_t);
77void proxy_lwip_post(struct tcpip_msg *);
78const char *proxy_lwip_strerr(err_t);
79
80/* proxy_rtadvd.c */
81void proxy_rtadvd_start(struct netif *);
82void proxy_rtadvd_do_quick(void *);
83
84/* rtmon_*.c */
85int rtmon_get_defaults(void);
86
87/* proxy_dhcp6ds.c */
88err_t dhcp6ds_init(struct netif *);
89
90/* proxy_tftpd.c */
91err_t tftpd_init(struct netif *, const char *);
92
93/* pxtcp.c */
94void pxtcp_init(void);
95
96/* pxudp.c */
97void pxudp_init(void);
98
99/* pxdns.c */
100err_t pxdns_init(struct netif *);
101void pxdns_set_nameservers(void *);
102
103/* pxping.c */
104err_t pxping_init(struct netif *, SOCKET, SOCKET);
105
106
107#if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS)
108# define HAVE_SA_LEN 0
109#else
110# define HAVE_SA_LEN 1
111#endif
112
113#define LWIP_ASSERT1(condition) LWIP_ASSERT(#condition, condition)
114
115/*
116 * TODO: DPRINTF0 should probably become LogRel but its usage needs to
117 * be cleaned up a bit before.
118 */
119#define DPRINTF0(a) Log(a)
120
121#define DPRINTF(a) DPRINTF1(a)
122#define DPRINTF1(a) Log2(a)
123#define DPRINTF2(a) Log3(a)
124
125#endif /* !VBOX_INCLUDED_SRC_NAT_proxy_h */
126
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette