mirror of
https://github.com/bettercap/bettercap
synced 2025-08-20 21:43:18 -07:00
Wifi 5GHz support added to wifi.recon
This commit is contained in:
parent
420ab9e26c
commit
813561cbda
7 changed files with 70 additions and 21 deletions
|
@ -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.")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue