From 5cbccdc0fdf66a036e836464bf2d954e29eb63e4 Mon Sep 17 00:00:00 2001 From: JackDoan Date: Thu, 26 Feb 2026 11:48:53 -0600 Subject: [PATCH] remove dead comment --- overlay/tun_linux.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/overlay/tun_linux.go b/overlay/tun_linux.go index 19a8952b..f8e41710 100644 --- a/overlay/tun_linux.go +++ b/overlay/tun_linux.go @@ -454,15 +454,6 @@ func (t *tun) Activate() error { return fmt.Errorf("failed to run tun device: %s", err) } - //todo hmmmmmm - //pretty sure this is avoidable - //if len(t.unsafeNetworks) != 0 { - // err = os.WriteFile(fmt.Sprintf("/proc/sys/net/ipv4/conf/%s/accept_local", t.Device), []byte("1"), os.FileMode(0o644)) - // if err != nil { - // return err - // } - //} - return nil }