You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
349 B
15 lines
349 B
core.register_action("bug", { "http-res" }, function(txn)
|
|
data = txn:get_priv()
|
|
if not data then
|
|
data = 0
|
|
end
|
|
data = data + 1
|
|
print(string.format("set to %d", data))
|
|
txn.http:res_set_status(200 + data)
|
|
txn:set_priv(data)
|
|
end)
|
|
|
|
core.register_service("fakeserv", "http", function(applet)
|
|
applet:set_status(200)
|
|
applet:start_response()
|
|
end)
|
|
|