Compare commits

...

4 Commits

Author SHA1 Message Date
jaspreetsachdev
bf06374839 Merge pull request #614 from Telecominfraproject/v3.0.0-release
Merge from main
2023-12-20 13:29:24 -05:00
Jaspreet Sachdev
d2ff492853 Merge branch 'main' into v3.0.0-release 2023-12-20 13:26:46 -05:00
John Crispin
d3a4a73c15 ucentral-event: apply ratelimit to captive portal interfaces
Fixes: WIFI-1324
Signed-off-by: John Crispin <john@phrozen.org>
2023-12-19 16:58:10 +01:00
John Crispin
73cb19e2be ath11k-wifi: update Yuncore FAP655 BDF files
Fixes: WIFI-13244
Signed-off-by: John Crispin <john@phrozen.org>
2023-12-19 16:57:42 +01:00
3 changed files with 2 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ handlers = {
ssid: hapd.ssid, ssid: hapd.ssid,
bssid: hapd.bssid, bssid: hapd.bssid,
}); });
if (ratelimit && !wildcard(notify.data.ifname, 'wlanc*')) { if (ratelimit) {
let msg = { let msg = {
device: hapd.ifname, device: hapd.ifname,
address: notify.data.address, address: notify.data.address,
@@ -103,7 +103,7 @@ handlers = {
}, },
disassoc: function(notify, hapd) { disassoc: function(notify, hapd) {
if (ratelimit && !wildcard(notify.data.ifname, 'wlanc*')) { if (ratelimit) {
let msg = { let msg = {
address: notify.data.address, address: notify.data.address,
}; };