This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local http = require("http") | |
core.register_action("auth-request", { "tcp-req", "http-req" }, function(txn) | |
auth_request(txn) | |
end, 0) | |
function set_var_pre_2_2(txn, var, value) | |
return txn:set_var(var, value) | |
end | |
function set_var_post_2_2(txn, var, value) |