AdGuardHome/dhcpd/check_other_dhcp_windows.go
2020-05-25 16:43:03 +03:00

7 lines
144 B
Go

package dhcpd
import "fmt"
func CheckIfOtherDHCPServersPresent(ifaceName string) (bool, error) {
return false, fmt.Errorf("not supported")
}