16 lines
401 B
Go
16 lines
401 B
Go
// +build windows
|
|
|
|
//go:build windows
|
|
|
|
package dhcpd
|
|
|
|
import "github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
|
|
|
func CheckIfOtherDHCPServersPresentV4(ifaceName string) (bool, error) {
|
|
return false, aghos.Unsupported("CheckIfOtherDHCPServersPresentV4")
|
|
}
|
|
|
|
func CheckIfOtherDHCPServersPresentV6(ifaceName string) (bool, error) {
|
|
return false, aghos.Unsupported("CheckIfOtherDHCPServersPresentV6")
|
|
}
|