VirtualBox

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

Last change on this file since 82968 was 82968, checked in by vboxsync, 5 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 2.9 KB
Line 
1/* $Id: proxy.h 82968 2020-02-04 10:35:17Z 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 int ipv6_enabled;
54 int ipv6_defroute;
55 SOCKET icmpsock4;
56 SOCKET icmpsock6;
57 const char *tftp_root;
58 const struct sockaddr_in *src4;
59 const struct sockaddr_in6 *src6;
60 const struct ip4_lomap_desc *lomap_desc;
61 const char **nameservers;
62};
63
64extern volatile struct proxy_options *g_proxy_options;
65extern struct netif *g_proxy_netif;
66
67void proxy_init(struct netif *, struct proxy_options *);
68SOCKET proxy_connected_socket(int, int, ipX_addr_t *, u16_t);
69SOCKET proxy_bound_socket(int, int, struct sockaddr *);
70#ifdef RT_OS_LINUX
71int proxy_fixup_accepted_socket(SOCKET);
72#endif
73void proxy_reset_socket(SOCKET);
74int proxy_sendto(SOCKET, struct pbuf *, void *, size_t);
75void proxy_lwip_post(struct tcpip_msg *);
76const char *proxy_lwip_strerr(err_t);
77
78/* proxy_rtadvd.c */
79void proxy_rtadvd_start(struct netif *);
80void proxy_rtadvd_do_quick(void *);
81
82/* rtmon_*.c */
83int rtmon_get_defaults(void);
84
85/* proxy_dhcp6ds.c */
86err_t dhcp6ds_init(struct netif *);
87
88/* proxy_tftpd.c */
89err_t tftpd_init(struct netif *, const char *);
90
91/* pxtcp.c */
92void pxtcp_init(void);
93
94/* pxudp.c */
95void pxudp_init(void);
96
97/* pxdns.c */
98err_t pxdns_init(struct netif *);
99void pxdns_set_nameservers(void *);
100
101/* pxping.c */
102err_t pxping_init(struct netif *, SOCKET, SOCKET);
103
104
105#if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS)
106# define HAVE_SA_LEN 0
107#else
108# define HAVE_SA_LEN 1
109#endif
110
111#define LWIP_ASSERT1(condition) LWIP_ASSERT(#condition, condition)
112
113/*
114 * TODO: DPRINTF0 should probably become LogRel but its usage needs to
115 * be cleaned up a bit before.
116 */
117#define DPRINTF0(a) Log(a)
118
119#define DPRINTF(a) DPRINTF1(a)
120#define DPRINTF1(a) Log2(a)
121#define DPRINTF2(a) Log3(a)
122
123#endif /* !VBOX_INCLUDED_SRC_NAT_proxy_h */
124
Note: See TracBrowser for help on using the repository browser.

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