2022-04-25 18:41:39 +03:00
|
|
|
//go:build windows
|
2021-12-16 20:54:59 +03:00
|
|
|
|
|
|
|
package aghnet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
|
|
"github.com/AdguardTeam/golibs/errors"
|
|
|
|
"golang.org/x/sys/windows"
|
|
|
|
)
|
|
|
|
|
2022-04-25 18:41:39 +03:00
|
|
|
func canBindPrivilegedPorts() (can bool, err error) {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2021-12-16 20:54:59 +03:00
|
|
|
func ifaceHasStaticIP(string) (ok bool, err error) {
|
|
|
|
return false, aghos.Unsupported("checking static ip")
|
|
|
|
}
|
|
|
|
|
|
|
|
func ifaceSetStaticIP(string) (err error) {
|
|
|
|
return aghos.Unsupported("setting static ip")
|
|
|
|
}
|
|
|
|
|
2021-12-23 20:16:08 +03:00
|
|
|
// closePortChecker closes c. c must be non-nil.
|
2021-12-16 20:54:59 +03:00
|
|
|
func closePortChecker(c io.Closer) (err error) {
|
|
|
|
if err = c.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// It seems that net.Listener.Close() doesn't close file descriptors right
|
|
|
|
// away. We wait for some time and hope that this fd will be closed.
|
|
|
|
//
|
|
|
|
// TODO(e.burkov): Investigate the purpose of the line and perhaps use more
|
|
|
|
// reliable approach.
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func isAddrInUse(err syscall.Errno) (ok bool) {
|
|
|
|
return errors.Is(err, windows.WSAEADDRINUSE)
|
|
|
|
}
|