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