web: Relax hostname validation for length
[project/luci.git] / libs / web / luasrc / cbi / datatypes.lua
index d1ac8f4..58b54de 100644 (file)
@@ -127,7 +127,7 @@ function macaddr(val)
 end
 
 function hostname(val)
-       if val and (#val < 25) and val.match(val, "^[a-zA-Z0-9][a-zA-Z0-9%-%.]*[a-zA-Z0-9]$") then
+       if val and (#val < 254) and val.match(val, "^[a-zA-Z0-9][a-zA-Z0-9%-%.]*[a-zA-Z0-9]$") then
                return true
        end
        return false