new: implemented channel hopping for wifi.recon module ( ref #53 )

This commit is contained in:
evilsocket 2018-02-17 02:41:10 +01:00
commit a66f5fabbb
4 changed files with 87 additions and 2 deletions

View file

@ -1,6 +1,7 @@
package network
import (
"fmt"
"net"
"regexp"
"strings"
@ -57,3 +58,7 @@ func getInterfaceName(iface net.Interface) string {
return iface.Name
}
func SetInterfaceChannel(iface string, channel int) error {
return fmt.Errorf("Windows does not support WiFi channel hopping.")
}