Changeset 6826
- Timestamp:
- 01/29/11 23:47:40 (2 years ago)
- Files:
-
- 1 modified
-
luci/trunk/libs/sys/luasrc/sys/iptparser.lua (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
luci/trunk/libs/sys/luasrc/sys/iptparser.lua
r6825 r6826 216 216 217 217 218 --- Find the names of all tables. 219 -- @return Table of table names. 220 function IptParser.tables( self ) 221 return self._tables 222 end 223 224 218 225 --- Find the names of all chains within the given table name. 219 226 -- @param table String containing the table name … … 305 312 if rule:match("^%d+%s+%d+%s+%d+%s%s") then 306 313 table.insert(rule_parts, 4, nil) 314 end 315 316 -- ip6tables opt column is usually zero-width 317 if self._family == 6 then 318 table.insert(rule_parts, 6, "--") 307 319 end 308 320
