mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 12:27:39 +03:00
Fix lint
This commit is contained in:
parent
b2bb9b3d2a
commit
e5c59fc756
3 changed files with 31 additions and 16 deletions
13
Makefile
13
Makefile
|
@ -6,3 +6,16 @@ fmt:
|
|||
fmt_install:
|
||||
go install -v mvdan.cc/gofumpt@latest
|
||||
go install -v github.com/daixiang0/gci@v0.4.0
|
||||
|
||||
lint:
|
||||
GOOS=linux golangci-lint run .
|
||||
GOOS=android golangci-lint run .
|
||||
GOOS=windows golangci-lint run .
|
||||
GOOS=darwin golangci-lint run .
|
||||
GOOS=freebsd golangci-lint run .
|
||||
|
||||
lint_install:
|
||||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
||||
|
||||
test:
|
||||
go test -v ./...
|
|
@ -6,6 +6,7 @@ import (
|
|||
"net"
|
||||
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
|
||||
"gvisor.dev/gvisor/pkg/tcpip"
|
||||
"gvisor.dev/gvisor/pkg/tcpip/adapters/gonet"
|
||||
)
|
||||
|
|
|
@ -27,9 +27,12 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
|
|||
return err
|
||||
}
|
||||
|
||||
for _, route := range routes {
|
||||
if len(routes) == 0 {
|
||||
return E.Extend(ErrNoRoute, "no route in default table ", defaultTableIndex)
|
||||
}
|
||||
|
||||
var link netlink.Link
|
||||
link, err = netlink.LinkByIndex(route.LinkIndex)
|
||||
link, err = netlink.LinkByIndex(routes[0].LinkIndex)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -43,9 +46,7 @@ func (m *defaultInterfaceMonitor) checkUpdate() error {
|
|||
if oldInterface == m.defaultInterfaceName && oldIndex == m.defaultInterfaceIndex {
|
||||
return nil
|
||||
}
|
||||
|
||||
m.emit()
|
||||
return nil
|
||||
}
|
||||
|
||||
return E.Extend(ErrNoRoute, "no route in default table ", defaultTableIndex)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue