diff-golf :)

Signed-off-by: ed <s@ocv.me>
This commit is contained in:
ed 2026-04-10 19:59:50 +00:00 committed by GitHub
parent 84b05940cf
commit 3f4dabe45c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -516,13 +516,13 @@ class TcpSrv(object):
if not ln.startswith("default"):
continue
yield ln.split()[7] if OPENBSD else ln.split()[3]
else:
with open("/proc/net/route", "rb") as f:
next(f)
for ln in f:
r = ln.decode("utf-8").strip().split()
if r[1] == "0" * 8 and int(r[3], 16) & 2:
yield r[0]
return
with open("/proc/net/route", "rb") as f:
next(f)
for ln in f:
r = ln.decode("utf-8").strip().split()
if r[1] == "0" * 8 and int(r[3], 16) & 2:
yield r[0]
def _defroute(self) -> str:
ret = ""