We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66667ab commit c882856Copy full SHA for c882856
1 file changed
src/Controllers/WifiController.cpp
@@ -311,7 +311,7 @@ void WifiController::handleApSpam()
311
terminalView.println("WiFi: Starting beacon spam... Press [ENTER] to stop.");
312
while (true)
313
{
314
- beaconCreate("", 0); // func from Vendors/wifi_atks.h
+ beaconCreate("", 0, 0); // func from Vendors/wifi_atks.h
315
316
// Enter press to stop
317
char key = terminalInput.readChar();
@@ -658,7 +658,7 @@ void WifiController::handleFlood(const TerminalCommand& cmd)
658
while (true) {
659
char c = terminalInput.readChar();
660
if (c == '\r' || c == '\n') break;
661
- beaconCreate("", channel); // func from Vendors/wifi_atks.h
+ beaconCreate("", channel, 0); // func from Vendors/wifi_atks.h
662
}
663
664
terminalView.println("WiFi Flood: Stopped by user.\n");
0 commit comments