X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=applications%2Fluci-splash%2Froot%2Fusr%2Fbin%2Fluci-splashd;h=a178ef232eef124e86017cd432291efaf0c8a2f1;hp=33391cc5bb4950ba4279803b1580048bfd2726c8;hb=c026b6ed03d78dc408bbe468c2eda0a9fe85a4d5;hpb=12c01f8ae47d99d6486cd9512547b80ceb9e1ff1 diff --git a/applications/luci-splash/root/usr/bin/luci-splashd b/applications/luci-splash/root/usr/bin/luci-splashd index 33391cc5bb..a178ef232e 100755 --- a/applications/luci-splash/root/usr/bin/luci-splashd +++ b/applications/luci-splash/root/usr/bin/luci-splashd @@ -1,5 +1,8 @@ #!/usr/bin/lua require("socket") +require("luci.model.uci") + +luci.model.uci.set_savedir(luci.model.uci.savedir_state) local server = socket.bind("0.0.0.0", arg[1] or 8082) server:settimeout(0, "t") @@ -9,7 +12,19 @@ while true do if client then client:settimeout(1) - local srv = client:getsockname() + local ip = client:getpeername() + local srv + luci.model.uci.foreach("network", "interface", + function (section) + if section.ipaddr then + local p = luci.sys.net.mask4prefix(section.netmask) + if luci.sys.net.belongs(ip, section.ipaddr, p) then + srv = section.ipaddr + return + end + end + end) + client:receive() client:send("HTTP/1.0 302 Found\r\nLocation: http://" .. srv .. (arg[2] or "/luci/splash") .. "\r\n\r\n")