21 lines
450 B
Go
21 lines
450 B
Go
//go:build !(linux || darwin || freebsd)
|
|
// +build !linux,!darwin,!freebsd
|
|
|
|
package aghnet
|
|
|
|
import (
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
)
|
|
|
|
func canBindPrivilegedPorts() (can bool, err error) {
|
|
return aghos.HaveAdminRights()
|
|
}
|
|
|
|
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")
|
|
}
|