Skip to content

Commit

Permalink
netifd: fix validation constraints
Browse files Browse the repository at this point in the history
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39648 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
jow committed Feb 21, 2014
1 parent bdd8712 commit f58f612
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions package/network/config/netifd/files/etc/init.d/network
Expand Up @@ -57,12 +57,12 @@ validate_route_section()
{
uci_validate_section network route "${1}" \
'interface:string' \
'target:ip4addr' \
'netmask:ip4prefix' \
'target:cidr4' \
'netmask:netmask4' \
'gateway:ip4addr' \
'metric:uinteger' \
'mtu:uinteger' \
'table:range(0,65535)'
'table:or(range(0,65535),string)'

return $?
}
Expand All @@ -71,11 +71,11 @@ validate_route6_section()
{
uci_validate_section network route6 "${1}" \
'interface:string' \
'target:ip6addr' \
'target:cidr6' \
'gateway:ip6addr' \
'metric:uinteger' \
'mtu:uinteger' \
'table:range(0,65535)'
'table:or(range(0,65535),string)'

return $?
}
Expand All @@ -85,12 +85,12 @@ validate_rule_section()
uci_validate_section network rule "${1}" \
'in:string' \
'out:string' \
'src:ip4prefix' \
'dest:ip4prefix' \
'tos:rage(0.31)' \
'string:mark' \
'src:cidr4' \
'dest:cidr4' \
'tos:range(0,31)' \
'mark:string' \
'invert:bool' \
'lookup:range(0,65535)' \
'lookup:or(range(0,65535),string)' \
'goto:range(0,65535)' \
'action:or("prohibit", "unreachable", "blackhole", "throw")'

Expand All @@ -102,12 +102,12 @@ validate_rule6_section()
uci_validate_section network rule6 "${1}" \
'in:string' \
'out:string' \
'src:ip4prefix' \
'dest:ip4prefix' \
'tos:rage(0.31)' \
'string:mark' \
'src:cidr6' \
'dest:cidr6' \
'tos:range(0,31)' \
'mark:string' \
'invert:bool' \
'lookup:range(0,65535)' \
'lookup:or(range(0,65535),string)' \
'goto:range(0,65535)' \
'action:or("prohibit", "unreachable", "blackhole", "throw")'

Expand Down

0 comments on commit f58f612

Please sign in to comment.