Skip to content
Snippets Groups Projects
Commit 16266e22 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

hostapd: add a patch for suppressing probe responses from APs that have...

hostapd: add a patch for suppressing probe responses from APs that have reached their limit of maximum number of clients

SVN-Revision: 33401
parent 39e6e9e3
No related branches found
No related tags found
No related merge requests found
--- a/src/ap/beacon.c
+++ b/src/ap/beacon.c
@@ -413,6 +413,10 @@ void handle_probe_req(struct hostapd_dat
return;
}
+ if (!sta && hapd->num_sta >= hapd->conf->max_num_sta)
+ wpa_printf(MSG_MSGDUMP, "Probe Request from " MACSTR " ignored,"
+ " too many connected stations.", MAC2STR(mgmt->sa));
+
#ifdef CONFIG_INTERWORKING
if (elems.interworking && elems.interworking_len >= 1) {
u8 ant = elems.interworking[0] & 0x0f;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment