From 648cd33e73cbbbf19e278101e6a9e071cb154c05 Mon Sep 17 00:00:00 2001 From: Anders Waldenborg Date: Fri, 13 Jul 2012 22:54:17 +0200 Subject: slirp: Handle whole 127.0.0.0/8 network as local addresses. Changes so translation of remote address to the host's ip address in the virtual network happens for all addresses in the 127.0.0.0/8 network, not just 127.0.0.1. This fixes so that hostfwd bound to addresses such as 127.0.0.2 works. Signed-off-by: Anders Waldenborg Signed-off-by: Jan Kiszka --- slirp/main.h | 1 + 1 file changed, 1 insertion(+) (limited to 'slirp/main.h') diff --git a/slirp/main.h b/slirp/main.h index 028df4b361..bf601e223d 100644 --- a/slirp/main.h +++ b/slirp/main.h @@ -31,6 +31,7 @@ extern char *exec_shell; extern u_int curtime; extern fd_set *global_readfds, *global_writefds, *global_xfds; extern struct in_addr loopback_addr; +extern in_addr_t loopback_mask; extern char *username; extern char *socket_path; extern int towrite_max; -- cgit v1.2.1