applications/luci-splash: properly fix mac address detection in mixed IPv4/IPv6 environments (thanks stargieg)

This commit is contained in:
Jo-Philipp Wich 2009-05-30 22:38:46 +00:00
parent e96429a425
commit 6a2bb359fd

View file

@ -19,7 +19,8 @@ function action_dispatch()
end
function action_activate()
local mac = luci.sys.net.ip4mac(luci.http.getenv("REMOTE_ADDR"))
local ip = luci.http.getenv("REMOTE_ADDR") or "127.0.0.1"
local mac = luci.sys.net.ip4mac(ip:match("^[\[::ffff:]*(%d+.%d+%.%d+%.%d+)\]*$"))
if mac and luci.http.formvalue("accept") then
os.execute("luci-splash add "..mac.." >/dev/null 2>&1")
luci.http.redirect(luci.model.uci.cursor():get("freifunk", "community", "homepage"))