2021-06-04 13:35:34 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
//go:build windows
|
|
|
|
|
2020-07-03 15:20:01 +00:00
|
|
|
package dhcpd
|
|
|
|
|
2021-06-04 13:35:34 +00:00
|
|
|
import "github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
2020-07-03 15:20:01 +00:00
|
|
|
|
2020-08-13 15:45:27 +00:00
|
|
|
func CheckIfOtherDHCPServersPresentV4(ifaceName string) (bool, error) {
|
2021-06-04 13:35:34 +00:00
|
|
|
return false, aghos.Unsupported("CheckIfOtherDHCPServersPresentV4")
|
2020-08-13 15:45:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func CheckIfOtherDHCPServersPresentV6(ifaceName string) (bool, error) {
|
2021-06-04 13:35:34 +00:00
|
|
|
return false, aghos.Unsupported("CheckIfOtherDHCPServersPresentV6")
|
2020-07-03 15:20:01 +00:00
|
|
|
}
|