mirror of
				https://git.haproxy.org/git/haproxy.git/
				synced 2025-11-04 02:21:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			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)
 |