From 0c4c2a8cb24f48c44d74fc213f7cf5150c51bd1f Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Wed, 13 Dec 2023 22:39:12 +0100 Subject: [PATCH] Listen on all address --- iface/uspproxy/tun.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iface/uspproxy/tun.go b/iface/uspproxy/tun.go index 17a61ac67..ece3d9fa7 100644 --- a/iface/uspproxy/tun.go +++ b/iface/uspproxy/tun.go @@ -50,6 +50,6 @@ func (t *NetStackTun) Create() (tun.Device, error) { return nil, err } - err = t.proxy.ListenAndServe("127.0.0.1:1234") + err = t.proxy.ListenAndServe("0.0.0.0:1234") return nsTunDev, nil }