class Async::HTTP::Protocol::HTTP11

def chunked?(headers)

def chunked?(headers)
	if transfer_encoding = headers[TRANSFER_ENCODING]
		if transfer_encoding.count == 1
			return transfer_encoding.first == CHUNKED
		end
	end
end