9 lines
174 B
Go
9 lines
174 B
Go
package dhcpd
|
|
|
|
// Check if network interface has a static IP configured
|
|
// Supports: Raspbian.
|
|
func hasStaticIPDarwin(ifaceName string) (bool, error) {
|
|
|
|
return false, nil
|
|
}
|