From e38afce62ab734b0cf722e43e5505770fafd1561 Mon Sep 17 00:00:00 2001 From: xHire Date: Sat, 28 Oct 2017 09:48:54 +0200 Subject: [PATCH] Changed default IPv6 address for WrapSix --- src/config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 195fa37..ed64d04 100644 --- a/src/config.c +++ b/src/config.c @@ -290,8 +290,9 @@ int cfg_host_ips(char *cinterface, struct s_ipv6_addr *ipv6_addr, /* IPv6 default? huh... but we can't work without host IPv6 address */ if (!(found & 0x05)) { + /* the IPv4 in there is from class E, just to be sure */ /* FUN: try to decode it ;c) */ - inet_pton(AF_INET6, "64:ff9b::E7ad:514", ipv6_addr); + inet_pton(AF_INET6, "64:ff9b::F7ad:514", ipv6_addr); } freeifaddrs(ifaddr);