mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 19:08:25 -07:00
14 lines
327 B
Go
14 lines
327 B
Go
|
//go:build windows
|
||
|
// +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")
|
||
|
}
|