mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-14 18:51:34 +03:00
12 lines
264 B
Go
12 lines
264 B
Go
package dhcpd
|
|
|
|
import "fmt"
|
|
|
|
func CheckIfOtherDHCPServersPresentV4(ifaceName string) (bool, error) {
|
|
return false, fmt.Errorf("not supported")
|
|
}
|
|
|
|
func CheckIfOtherDHCPServersPresentV6(ifaceName string) (bool, error) {
|
|
return false, fmt.Errorf("not supported")
|
|
}
|