From ae7506793889c8ad86814ab4cd0574bab883f036 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 13 Mar 2023 15:03:24 +0100 Subject: [PATCH] ucentral-schema: default to 32 STA max assoc if the driver does not report a valid value Fixes: WIFI-12355 Signed-off-by: John Crispin --- .../ucentral-schema/files/usr/share/ucentral/wifi_max_user.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/ucentral/ucentral-schema/files/usr/share/ucentral/wifi_max_user.uc b/feeds/ucentral/ucentral-schema/files/usr/share/ucentral/wifi_max_user.uc index b7190a63c..e82f2fd1c 100755 --- a/feeds/ucentral/ucentral-schema/files/usr/share/ucentral/wifi_max_user.uc +++ b/feeds/ucentral/ucentral-schema/files/usr/share/ucentral/wifi_max_user.uc @@ -13,4 +13,4 @@ function phy_get() { } let phys = phy_get(); -printf("%d\n", phys[0].max_ap_assoc); +printf("%d\n", phys[0].max_ap_assoc || 32);