diff options
Diffstat (limited to 'lualib/lua_util.lua')
-rw-r--r-- | lualib/lua_util.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lualib/lua_util.lua b/lualib/lua_util.lua index 454629bba..b4707c4bd 100644 --- a/lualib/lua_util.lua +++ b/lualib/lua_util.lua @@ -1532,4 +1532,12 @@ end exports.dns_timeout_augmentation = dns_timeout_augmentation +-- Defines symbols priorities for common usage in prefilters/postfilters +exports.symbols_priorities = { + top = 10, -- Symbols must be executed first (or last), such as settings + high = 9, -- Example: asn + medium = 5, -- Everything should use this as default + low = 0, +} + return exports |