applications/luci-splash: implement alias interface support in luci-splashd

This commit is contained in:
Jo-Philipp Wich 2009-02-19 23:09:28 +00:00
parent b6406c3980
commit 593bc2df7b

View file

@ -16,9 +16,10 @@ while true do
if client then
client:settimeout(1)
local srv
print (client:getpeername())
local ip = luci.ip.IPv4((client:getpeername()))
uci:foreach("network", "interface",
function (section)
local function find_srv(section)
if section.ipaddr then
local net = luci.ip.IPv4(section.ipaddr, section.netmask)
if ip and net and net:contains(ip) then
@ -26,7 +27,10 @@ while true do
return
end
end
end)
end
uci:foreach("network", "interface", find_srv)
uci:foreach("network", "alias", find_srv)
client:receive()
client:send("HTTP/1.0 302 Found\r\nLocation: http://" .. srv ..