From 5389228034d573597e45857d5d7fe6b13db0e998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=B8=EF=B8=8F?= <29265684+buffermet@users.noreply.github.com> Date: Mon, 20 Sep 2021 20:03:46 +1000 Subject: [PATCH] also support 'Netif' reference in certain netstat builds --- routing/update_linux.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routing/update_linux.go b/routing/update_linux.go index 89885589..fbf0b09f 100644 --- a/routing/update_linux.go +++ b/routing/update_linux.go @@ -48,6 +48,9 @@ func update() ([]Route, error) { case "Iface": route.Device = s break + case "Netif": + route.Device = s + break } }