aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/patches/440-max_num_sta_probe.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/network/services/hostapd/patches/440-max_num_sta_probe.patch')
-rw-r--r--package/network/services/hostapd/patches/440-max_num_sta_probe.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/network/services/hostapd/patches/440-max_num_sta_probe.patch b/package/network/services/hostapd/patches/440-max_num_sta_probe.patch
deleted file mode 100644
index 74aef26d64..0000000000
--- a/package/network/services/hostapd/patches/440-max_num_sta_probe.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/src/ap/beacon.c
-+++ b/src/ap/beacon.c
-@@ -664,6 +664,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 (hapd->conf->interworking &&
- elems.interworking && elems.interworking_len >= 1) {