mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 22:15:14 +00:00
d7a8f14145
We rename all the VTC files to avoid name collisions when importing/backporting.
16 lines
349 B
Lua
16 lines
349 B
Lua
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)
|