diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-20 16:28:17 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-20 16:28:17 +0000 |
commit | 95ff2b54ab8b8d97e0ae8f252b37cd58fec645e4 (patch) | |
tree | f09df67e54f8447dc7afc04dc4b7e3e14c63396f /core/src | |
parent | 11e00612232f01ff4e8a9aa52df4d89164803ed9 (diff) |
* ffluci: moved src/iptparser.lua to src/sys/iptparser.lua; renamed lib to ffluci.sys.iptparser
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/sys/iptparser.lua (renamed from core/src/iptparser.lua) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/iptparser.lua b/core/src/sys/iptparser.lua index ab77a7404..4e2c0d680 100644 --- a/core/src/iptparser.lua +++ b/core/src/sys/iptparser.lua @@ -19,7 +19,7 @@ $Id$ ]]-- -module("ffluci.iptparser", package.seeall) +module("ffluci.sys.iptparser", package.seeall) require("ffluci.sys") require("ffluci.util") @@ -77,7 +77,7 @@ Each rule table contains the following fields: Example: -ip = IptParser(); +ip = ffluci.sys.iptparser.IptParser() result = ip.find( { target="REJECT", protocol="tcp", |