From ffe02f5585d3fd722f9eb0ecdce6f128444c63d1 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Fri, 1 Apr 2016 00:46:35 +0200 Subject: slirp: Mark pieces missing IPv6 support Signed-off-by: Samuel Thibault --- slirp/tcp_input.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'slirp/tcp_input.c') diff --git a/slirp/tcp_input.c b/slirp/tcp_input.c index 6749b32f5d..b10477fc57 100644 --- a/slirp/tcp_input.c +++ b/slirp/tcp_input.c @@ -388,6 +388,7 @@ findso: * as if it was LISTENING, and continue... */ if (so == NULL) { + /* TODO: IPv6 */ if (slirp->restricted) { /* Any hostfwds will have an existing socket, so we only get here * for non-hostfwd connections. These should be dropped, unless it @@ -609,6 +610,7 @@ findso: * If this is destined for the control address, then flag to * tcp_ctl once connected, otherwise connect */ + /* TODO: IPv6 */ if (af == AF_INET && (so->so_faddr.s_addr & slirp->vnetwork_mask.s_addr) == slirp->vnetwork_addr.s_addr) { -- cgit 1.4.1