mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 18:08:30 -07: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)
|
||
|
}
|