14 lines
327 B
Go
14 lines
327 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package aghnet
|
|
|
|
import "github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
|
|
func checkOtherDHCP(ifaceName string) (ok4, ok6 bool, err4, err6 error) {
|
|
return false,
|
|
false,
|
|
aghos.Unsupported("CheckIfOtherDHCPServersPresentV4"),
|
|
aghos.Unsupported("CheckIfOtherDHCPServersPresentV6")
|
|
}
|