Simone Margaritelli 2024-08-08 13:40:45 +02:00
commit b12ba7947b
4 changed files with 30 additions and 4 deletions

View file

@ -21,6 +21,10 @@ func getInterfaceName(iface net.Interface) string {
return iface.Name
}
func ForceMonitorMode(iface string) error {
return nil
}
func SetInterfaceChannel(iface string, channel int) error {
cIface := C.CString(iface)
defer C.free(unsafe.Pointer(cIface))