2020-07-03 15:20:01 +00:00
|
|
|
package dhcpd
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
2020-08-13 15:45:27 +00:00
|
|
|
func CheckIfOtherDHCPServersPresentV4(ifaceName string) (bool, error) {
|
|
|
|
return false, fmt.Errorf("not supported")
|
|
|
|
}
|
|
|
|
|
|
|
|
func CheckIfOtherDHCPServersPresentV6(ifaceName string) (bool, error) {
|
2020-07-03 15:20:01 +00:00
|
|
|
return false, fmt.Errorf("not supported")
|
|
|
|
}
|