From 60eaf0a1bab8864f7a79de04dbea3cdc750a28fb Mon Sep 17 00:00:00 2001 From: PolynomialDivision Date: Tue, 16 Jan 2018 14:28:26 +0100 Subject: [PATCH] don't deauth station... use handovers --- src/storage/datastorage.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/storage/datastorage.c b/src/storage/datastorage.c index 2a0790d..93fb2cf 100644 --- a/src/storage/datastorage.c +++ b/src/storage/datastorage.c @@ -448,7 +448,9 @@ void kick_clients(uint8_t bssid[], uint32_t id) { // the hearing map is full... send_set_probe(client_array[j].client_addr); - del_client_interface(id, client_array[j].client_addr, 5, 1, 1000); + // don't deauth station + // maybe we can use handovers... + del_client_interface(id, client_array[j].client_addr, 5, 0, 1000); client_array_delete(client_array[j]); // don't delete clients in a row. use update function again...