new: implemented wifi.bruteforce for darwin (ref #1075)

This commit is contained in:
Simone Margaritelli 2024-08-18 13:44:12 +02:00
commit 08da91ed5c
7 changed files with 382 additions and 7 deletions

View file

@ -0,0 +1,10 @@
//go:build windows || freebsd || netbsd || openbsd
// +build windows freebsd netbsd openbsd
package wifi
import "errors"
func wifiBruteforce(_ *WiFiModule, _ bruteforceJob) (bool, error) {
return false, errors.New("not supported on this OS")
}