AdGuardHome/internal/aghnet/net_unix.go

20 lines
349 B
Go
Raw Normal View History

2022-09-14 14:36:29 +01:00
//go:build darwin || freebsd || linux || openbsd
package aghnet
import (
"io"
"syscall"
"github.com/AdguardTeam/golibs/errors"
)
// closePortChecker closes c. c must be non-nil.
func closePortChecker(c io.Closer) (err error) {
return c.Close()
}
func isAddrInUse(err syscall.Errno) (ok bool) {
return errors.Is(err, syscall.EADDRINUSE)
}