Wifi 5GHz support added to wifi.recon

This commit is contained in:
Matrix86 2018-02-20 12:40:55 +01:00
commit 813561cbda
7 changed files with 70 additions and 21 deletions

View file

@ -62,3 +62,8 @@ func getInterfaceName(iface net.Interface) string {
func SetInterfaceChannel(iface string, channel int) error {
return fmt.Errorf("Windows does not support WiFi channel hopping.")
}
func GetSupportedFrequencies(iface string) ([]int, error) {
freqs := make([]int, 0)
return freqs, fmt.Errorf("Windows does not support WiFi channel hopping.")
}