mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-03-24 19:19:05 +03:00
8 lines
174 B
Go
8 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
|
|
}
|