Update On Fri Mar 28 19:38:19 CET 2025

This commit is contained in:
github-action[bot]
2025-03-28 19:38:19 +01:00
parent a4eec905b6
commit 14c5ce1c9c
127 changed files with 1182 additions and 773 deletions
@@ -187,7 +187,9 @@ do
local i = 0
local option = "lbss"
local function is_ip_port(str)
return str:match("^%d+%.%d+%.%d+%.%d+:%d+$") ~= nil
if type(str) ~= "string" then return false end
local ip, port = str:match("^([%d%.]+):(%d+)$")
return ip and datatypes.ipaddr(ip) and tonumber(port) and tonumber(port) <= 65535
end
uci:foreach(appname, "haproxy_config", function(t)
i = i + 1