# HG changeset patch # User Matthew Wild # Date 1487584060 0 # Node ID 84e103fd8039d8aba4792fdd54cfe2db7bb53e30 # Parent 3fe4ca2b55c262bc03853f96e3ac276049946881 mod_firewall: Add dummy add/remove methods for HTTP lists diff -r 3fe4ca2b55c2 -r 84e103fd8039 mod_firewall/definitions.lib.lua --- a/mod_firewall/definitions.lib.lua Mon Feb 20 09:32:48 2017 +0000 +++ b/mod_firewall/definitions.lib.lua Mon Feb 20 09:47:40 2017 +0000 @@ -128,6 +128,10 @@ end update_list(); end; + add = function () + end; + remove = function () + end; contains = function (self, item) if self.hash_function then item = self.hash_function(item);