class Async::HTTP::Protocol::HTTP11

def write_empty_body(body)

def write_empty_body(body)
	# Write empty body:
	write_persistent_header
	@stream.write("content-length: 0\r\n\r\n")
	
	body.read if body
	
	@stream.flush
end