mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 21:15:35 +03:00
12 lines
309 B
Go
12 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")
|
|
}
|