libs/web: add missing parts of previous commit

This commit is contained in:
Jo-Philipp Wich 2011-12-16 01:18:34 +00:00
parent cdcfb5502b
commit 757e9c2f1c

View file

@ -154,6 +154,10 @@ function host(val)
return hostname(val) or ipaddr(val)
end
function network(val)
return uciname(val) or host(val)
end
function wpakey(val)
if #val == 64 then
return (val:match("^[a-fA-F0-9]+$") ~= nil)