From: Jo-Philipp Wich Date: Thu, 19 Feb 2009 23:09:28 +0000 (+0000) Subject: applications/luci-splash: implement alias interface support in luci-splashd X-Git-Tag: 0.9.0~666 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=593bc2df7bc51478def55b1fd20eb4b80a954c2d applications/luci-splash: implement alias interface support in luci-splashd --- diff --git a/applications/luci-splash/root/usr/bin/luci-splashd b/applications/luci-splash/root/usr/bin/luci-splashd index 946c6966a..c94537fbc 100755 --- a/applications/luci-splash/root/usr/bin/luci-splashd +++ b/applications/luci-splash/root/usr/bin/luci-splashd @@ -16,17 +16,21 @@ while true do if client then client:settimeout(1) local srv - local ip = luci.ip.IPv4((client:getpeername())) - uci:foreach("network", "interface", - function (section) - if section.ipaddr then - local net = luci.ip.IPv4(section.ipaddr, section.netmask) - if ip and net and net:contains(ip) then - srv = section.ipaddr - return - end - end - end) + print (client:getpeername()) + local ip = luci.ip.IPv4((client:getpeername())) + + 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 + srv = section.ipaddr + return + 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 ..