mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-21 20:45:33 +03:00
7 lines
198 B
Go
7 lines
198 B
Go
|
package aghnet
|
||
|
|
||
|
// CheckOtherDHCP tries to discover another DHCP server in the network.
|
||
|
func CheckOtherDHCP(ifaceName string) (ok4, ok6 bool, err4, err6 error) {
|
||
|
return checkOtherDHCP(ifaceName)
|
||
|
}
|