mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-29 10:28:53 +03:00
11 lines
264 B
Go
11 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")
|
|
}
|