mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-08-04 00:19:28 +00:00
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
|
|
}
|