Skip to content

Commit 612e33d

Browse files
authored
Fix max_db_size on karma_attack.cpp
Not a big deal was more cosmetic, but always good to fix. Else we'd have 250/200 for example as the db will run anyway.
1 parent d8280c8 commit 612e33d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/modules/wifi/karma_attack.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const uint8_t karma_channels[] PROGMEM = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
5454
#define MAC_ROTATION_INTERVAL 30000
5555
#define MAX_PORTAL_TEMPLATES 10
5656
#define MAX_PENDING_PORTALS 10
57-
#define MAX_SSID_DB_SIZE 200
57+
#define MAX_SSID_DB_SIZE 15000
5858
#define MAX_POPULAR_SSIDS 20
5959
#define MAX_NETWORK_HISTORY 30
6060
#define ACTIVE_PORTAL_CHANNEL 0
@@ -2888,4 +2888,4 @@ void saveProbesToFile(FS &fs, bool compressed) {
28882888
file.close();
28892889
}
28902890
}
2891-
}
2891+
}

0 commit comments

Comments
 (0)