From 98540efd7e7e2ba6592ed32efb2cd5a1ff9b0739 Mon Sep 17 00:00:00 2001 From: pokamest Date: Mon, 19 Feb 2024 23:00:52 +0000 Subject: [PATCH] WG/AWG ipv6 fix --- client/mozilla/localsocketcontroller.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/mozilla/localsocketcontroller.cpp b/client/mozilla/localsocketcontroller.cpp index d7500685..4d5a348b 100644 --- a/client/mozilla/localsocketcontroller.cpp +++ b/client/mozilla/localsocketcontroller.cpp @@ -124,7 +124,8 @@ void LocalSocketController::activate(const QJsonObject &rawConfig) { // json.insert("hopindex", QJsonValue((double)hop.m_hopindex)); json.insert("privateKey", wgConfig.value(amnezia::config_key::client_priv_key)); json.insert("deviceIpv4Address", wgConfig.value(amnezia::config_key::client_ip)); - json.insert("deviceIpv6Address", "dead::1"); + // todo review wg ipv6 + // json.insert("deviceIpv6Address", "dead::1"); json.insert("serverPublicKey", wgConfig.value(amnezia::config_key::server_pub_key)); json.insert("serverPskKey", wgConfig.value(amnezia::config_key::psk_key)); json.insert("serverIpv4AddrIn", wgConfig.value(amnezia::config_key::hostName));