mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 13:05:36 +03:00
13 lines
309 B
Go
13 lines
309 B
Go
|
//go:build windows
|
||
|
|
||
|
package aghnet
|
||
|
|
||
|
import "github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
||
|
|
||
|
func checkOtherDHCP(ifaceName string) (ok4, ok6 bool, err4, err6 error) {
|
||
|
return false,
|
||
|
false,
|
||
|
aghos.Unsupported("CheckIfOtherDHCPServersPresentV4"),
|
||
|
aghos.Unsupported("CheckIfOtherDHCPServersPresentV6")
|
||
|
}
|