class Async::HTTP::Body::Chunked

def close(error = nil)

def close(error = nil)
	# We only close the connection if we haven't completed reading the entire body:
	unless @finished
		@protocol.close
		@finished = true
	end
	
	super
end