diff options
author | 2016-04-01 00:46:35 +0200 | |
---|---|---|
committer | 2019-03-06 23:36:22 +0100 | |
commit | ffe02f5585d3fd722f9eb0ecdce6f128444c63d1 (patch) | |
tree | 753fefc6a834a56d87e983a7658aea87c86035f6 /slirp/tcp_input.c | |
parent | slirp: fix big/little endian conversion in ident protocol (diff) | |
download | qemu-ffe02f5585d3fd722f9eb0ecdce6f128444c63d1.tar.xz qemu-ffe02f5585d3fd722f9eb0ecdce6f128444c63d1.zip |
slirp: Mark pieces missing IPv6 support
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Diffstat (limited to 'slirp/tcp_input.c')
-rw-r--r-- | slirp/tcp_input.c | 2 |
1 files changed, 2 insertions, 0 deletions
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) { |